/* ==========================================================================
   FUNCKFLIX HOT - 100% MOBILE OPTIMIZED & DESKTOP CENTERED STYLESHEET
   ========================================================================== */

:root {
    --bg-dark: #070508;
    --bg-card: rgba(21, 12, 18, 0.85);
    --border-card: rgba(255, 0, 60, 0.22);
    --border-card-hover: rgba(255, 0, 60, 0.5);
    
    --primary-red: #ff003c;
    --primary-red-dark: #cc0030;
    --accent-glow: #ff1a53;
    
    --gradient-red: linear-gradient(135deg, #ff003c 0%, #a60027 100%);
    --gradient-gold-red: linear-gradient(135deg, #ffffff 40%, #ff3366 100%);
    
    --text-main: #ffffff;
    --text-muted: #a698ab;
    --text-dim: #6e6173;
    
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
    
    --shadow-glow: 0 0 30px rgba(255, 0, 60, 0.45);
    --shadow-button: 0 10px 25px rgba(255, 0, 60, 0.4);
}

/* Global Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    line-height: 1.45;
    position: relative;
}

/* Background Ambient Orbs */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #ff003c 0%, rgba(100, 0, 30, 0) 70%);
}

.bg-glow-2 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, #990022 0%, rgba(50, 0, 15, 0) 70%);
}

/* Centralized Container Wrapper (Desktop & Mobile Friendly) */
.page-wrapper {
    width: 100%;
    max-width: 480px; /* Perfect smartphone dimension on desktop */
    min-height: 100vh;
    margin: 0 auto;
    background: rgba(12, 8, 12, 0.95);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 60, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

/* Top Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #ff003c, #990022);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.fire-icon {
    animation: bounce 1.2s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-2px); }
}

/* Header */
.header {
    padding: 16px 20px;
    background: rgba(12, 8, 12, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-title {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #fff;
}

.badge-vip {
    background: var(--gradient-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(255, 0, 60, 0.4);
}

.online-pill {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(255, 0, 60, 0.08);
    border: 1px solid rgba(255, 0, 60, 0.2);
    padding: 4px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-online {
    width: 7px;
    height: 7px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* Main Container Area */
.main-container {
    padding: 20px 16px 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Styling */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Hero Card */
.hero-card {
    text-align: center;
}

.badge-age {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 60, 0.12);
    border: 1px solid rgba(255, 0, 60, 0.3);
    color: #ff3366;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.main-heading {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: var(--gradient-gold-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-subheading {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 400;
}

/* Buttons & CTA Boxes */
.cta-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-glow-pulse {
    width: 100%;
    min-height: 64px;
    background: var(--gradient-red);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-button), var(--shadow-glow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    animation: pulse-glow 2.2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4), 0 0 20px rgba(255, 0, 60, 0.3); }
    50% { box-shadow: 0 15px 35px rgba(255, 0, 60, 0.7), 0 0 40px rgba(255, 0, 60, 0.6); }
    100% { box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4), 0 0 20px rgba(255, 0, 60, 0.3); }
}

.btn-glow-pulse:active {
    transform: scale(0.97);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-labels {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.security-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Locked Preview Grid */
.preview-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.preview-card h2 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}

.live-tag {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(255, 0, 60, 0.2);
    color: #ff3366;
    padding: 3px 8px;
    border-radius: 4px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.preview-item {
    height: 140px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.preview-item:active {
    transform: scale(0.97);
}

.preview-blur {
    width: 100%;
    height: 100%;
    filter: blur(12px) brightness(0.6);
}

.blur-1 {
    background: linear-gradient(45deg, #59001b, #1a000a, #800028);
}

.blur-2 {
    background: linear-gradient(135deg, #1f0010, #660022, #0d0008);
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(10, 5, 8, 0.45);
    padding: 10px;
    text-align: center;
}

.lock-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 60, 0.25);
    border: 1px solid rgba(255, 0, 60, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.locked-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
}

.unlock-btn {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ff3366;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 20px;
}

/* Benefits List */
.benefits-card {
    padding: 22px 18px;
}

.benefits-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-badge {
    width: 22px;
    height: 22px;
    background: rgba(255, 0, 60, 0.15);
    border: 1px solid rgba(255, 0, 60, 0.4);
    color: var(--primary-red);
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.benefit-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.benefit-desc strong {
    color: #fff;
}

.btn-secondary {
    width: 100%;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 60, 0.35);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:active {
    transform: scale(0.98);
    background: rgba(255, 0, 60, 0.2);
}

/* Footer Info */
.footer-info {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.disclaimer {
    margin-top: 4px;
    opacity: 0.7;
}

/* Mobile Sticky Bottom Floating Bar */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: rgba(10, 6, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 0, 60, 0.4);
    padding: 10px 16px;
    z-index: 999;
}

.btn-sticky {
    width: 100%;
    min-height: 54px;
    background: var(--gradient-red);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-button);
}

.btn-sticky:active {
    transform: scale(0.97);
}

/* Toast Social Proof Notification */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 32px);
    max-width: 440px;
    background: rgba(24, 12, 19, 0.95);
    border: 1px solid rgba(255, 0, 60, 0.4);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 60, 0.2);
    z-index: 998;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-fire {
    font-size: 1.2rem;
}

.toast-content {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.toast-content strong {
    color: #fff;
}

/* Desktop Aesthetics & Enhancements */
@media (min-width: 769px) {
    body {
        padding: 30px 0;
        background-image: 
            radial-gradient(circle at 50% 15%, rgba(255, 0, 60, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 85%, rgba(100, 0, 30, 0.2) 0%, transparent 60%);
    }

    .page-wrapper {
        border-radius: 28px;
        overflow: hidden;
        min-height: auto;
    }

    .sticky-footer {
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }
}
