* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: blur(17px);
    opacity: 0.5;
    animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

/* Content Card */
.content {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff 0%, #00e5ff 50%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 40px;
    animation: diamondSpin 3s ease-in-out infinite;
}

@keyframes diamondSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* OnlyFans Badge */
.leaked-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff0844 0%, #c41e3a 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 
        0 0 40px rgba(255, 8, 68, 0.8),
        0 0 60px rgba(255, 8, 68, 0.5),
        0 0 80px rgba(255, 8, 68, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
    margin-bottom: 30px;
}

@keyframes badgeGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(255, 8, 68, 0.8),
            0 0 60px rgba(255, 8, 68, 0.5),
            0 0 80px rgba(255, 8, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 50px rgba(255, 8, 68, 1),
            0 0 80px rgba(255, 8, 68, 0.7),
            0 0 100px rgba(255, 8, 68, 0.5);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(0, 217, 255, 0.4),
            0 0 20px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(0, 217, 255, 0.5),
            0 0 30px rgba(0, 217, 255, 0.3);
    }
}

/* Tagline */
.tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* CTA Button - Netflix-inspired Design */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    padding: 14px 28px;
    min-height: 52px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 217, 255, 0.4),
        0 0 20px rgba(0, 217, 255, 0.2);
    position: relative;
    letter-spacing: 0.3px;
    text-transform: none;
}

/* Side Arrows - Subtle & Clean (Hardware-Accelerated) */
.cta-button::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #00d9ff;
    filter: drop-shadow(0 0 4px rgba(0, 217, 255, 0.7));
    transform: translateY(-50%) translateX(0);
    animation: arrowPulseLeft 2s ease-in-out infinite;
    will-change: transform, opacity;
}

.cta-button::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 11px solid #00d9ff;
    filter: drop-shadow(0 0 4px rgba(0, 217, 255, 0.7));
    transform: translateY(-50%) translateX(0);
    animation: arrowPulseRight 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes arrowPulseLeft {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50%) translateX(4px);
        opacity: 1;
    }
}

@keyframes arrowPulseRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50%) translateX(-4px);
        opacity: 1;
    }
}

/* Hover State - Netflix-style */
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 6px 24px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4);
    background: linear-gradient(135deg, #00e5ff 0%, #00b3e6 100%);
}

.cta-button:hover::before,
.cta-button:hover::after {
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 1));
}

/* Active State */
.cta-button:active {
    transform: scale(0.98);
    box-shadow: 
        0 2px 8px rgba(0, 217, 255, 0.4),
        0 0 15px rgba(0, 217, 255, 0.2);
}

/* Focus State - Accessibility */
.cta-button:focus {
    outline: 2px solid #00d9ff;
    outline-offset: 2px;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 217, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.button-icon {
    font-size: 22px;
    line-height: 1;
}

.button-text {
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Footer Note */
.footer-note {
    margin-top: 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 600px) {
    .content {
        padding: 40px 30px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .logo-icon {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        font-weight: 800;
        padding: 13px 24px;
        min-height: 48px;
        gap: 8px;
        border-radius: 7px;
    }
    
    .cta-button::before {
        left: -18px;
        border-left-width: 9px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
    
    .cta-button::after {
        right: -18px;
        border-right-width: 9px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
    
    @keyframes arrowPulseLeft {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-50%) translateX(4px);
            opacity: 1;
        }
    }
    
    @keyframes arrowPulseRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-50%) translateX(-4px);
            opacity: 1;
        }
    }
    
    .button-icon {
        font-size: 22px;
    }
    
    .leaked-badge {
        font-size: 13px;
        padding: 7px 16px;
    }
    
    .footer-note {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-icon {
        font-size: 32px;
    }
    
    .cta-button {
        font-size: 15px;
        font-weight: 800;
        padding: 12px 20px;
        min-height: 46px;
        gap: 8px;
        border-radius: 6px;
    }
    
    .button-icon {
        font-size: 20px;
    }
    
    .leaked-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .footer-note {
        font-size: 14px;
    }
}

/* Ensure seamless background on all viewports */
@media (orientation: portrait) {
    .bg-image {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
}

@media (orientation: landscape) {
    .bg-image {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

/* FREE Highlight - Green Smooth Glow */
.free-highlight {
    color: #00ff88;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.6),
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 30px rgba(0, 255, 136, 0.2);
    letter-spacing: 0.5px;
}
