:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08); 
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --shadow-main: 0 24px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --theme-font: 'Outfit', sans-serif;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: #030303; /* Deep rich background */
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: 76px;
            padding-bottom: 100px;
        }

        /* Animated Glowing Orbs Background */
        .bg-orbs {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
            background: #030303;
        }
        
        .bg-orbs::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            opacity: 0.04;
            mix-blend-mode: overlay;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.8;
            animation: moveOrb 25s infinite alternate ease-in-out;
        }
        
        .orb-1 { width: 50vw; height: 50vw; background: var(--bg-grad-1); top: -20vh; left: -10vw; }
        .orb-2 { width: 60vw; height: 60vw; background: var(--bg-grad-2); bottom: -30vh; right: -10vw; animation-delay: -7s; }
        .orb-3 { width: 40vw; height: 40vw; background: var(--accent-primary); top: 40%; left: 60%; transform: translate(-50%, -50%); opacity: 0.3; animation: pulseOrb 12s infinite alternate; }

        @keyframes moveOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(10vw, 10vh) scale(1.3); }
        }
        @keyframes pulseOrb {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
            100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.5; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px;
        }

        /* Header / Nav */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 24px;
            transition: var(--transition);
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--card-border);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 1.1rem;
        }

        .header-cta {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .header-btn {
            padding: 10px 24px;
            border-radius: 99px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            background: #fff;
            color: #000;
            transition: var(--transition);
        }

        .header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        /* Glassmorphism Utilities */
        .glass {
            background: var(--card-bg);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--card-border);
            box-shadow: var(--shadow-main);
        }

        /* Hero Section */
        .hero {
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 0 20px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        /* Dynamic Layouts */
        .layout-reverse .hero-grid {
            grid-template-columns: 0.9fr 1.1fr;
        }
        .layout-reverse .hero-content {
            order: 2;
        }
        .layout-reverse .visual-wrapper {
            order: 1;
        }

        .layout-centered .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .layout-centered .subtitle {
            margin: 0 auto 30px;
        }
        .layout-centered .cta-group {
            justify-content: center;
        }
        .layout-centered .trust-badges {
            justify-content: center;
        }
        .layout-centered .visual-wrapper {
            max-width: 400px;
            margin: 0 auto;
        }

        .badge-wrapper {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 99px;
            background: var(--bg-grad-1);
            border: 1px solid var(--accent-primary);
            margin-bottom: 24px;
            animation: pulse 2s infinite;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background-color: #10b981;
            border-radius: 50%;
            margin-right: 10px;
            box-shadow: 0 0 10px #10b981;
            animation: blink 1s infinite;
        }

        .badge-text {
            color: var(--accent-primary);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        h1, h2, h3, .logo, .stat-num, .timer-display {
            font-family: var(--theme-font);
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .telegram-text {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 540px;
            font-weight: 300;
        }

        /* Buttons */
        .cta-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .btn {
            padding: 18px 32px;
            border-radius: 99px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: #fff;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 20px var(--glow);
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg) translate(-100%, -100%);
            transition: var(--transition);
        }

        .btn-primary:hover::after {
            transform: rotate(45deg) translate(100%, 100%);
            transition: transform 0.6s ease-in-out;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px var(--glow);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 1px solid var(--card-border);
        }

        .btn-secondary:hover {
            background: var(--card-bg);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .btn-icon {
            margin-right: 10px;
            width: 24px;
            height: 24px;
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            color: var(--accent-primary);
        }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .stat-card {
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Profile / Visual */
        .visual-wrapper {
            position: relative;
        }

        .profile-card {
            border-radius: var(--radius-lg);
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .profile-image {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            object-position: center top;
            border-radius: calc(var(--radius-lg) - 10px);
            display: block;
            transition: var(--transition);
        }

        .profile-card:hover .profile-image {
            transform: scale(1.02);
        }

        .scarcity-badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            color: white;
            padding: 12px 20px;
            border-radius: 99px;
            font-weight: 800;
            font-size: 0.9rem;
            box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
            z-index: 3;
            animation: bounce 2s infinite;
        }

        .floating-notif {
            position: absolute;
            bottom: -20px;
            left: -20px;
            padding: 16px 24px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 3;
            animation: float 4s ease-in-out infinite;
            white-space: nowrap;
            text-align: left;
        }

        .notif-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: var(--bg-grad-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
        }

        /* Sections */
        .section {
            padding: 50px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features/Preview Grid */
        .preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .preview-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            display: block; /* Make it a block link */
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .preview-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            border-color: rgba(255, 255, 255, 0.15);
        }

        /* Fake Blurred Image Container */
        .preview-img-wrapper {
            position: relative;
            width: 100%;
            height: 260px;
            overflow: hidden;
            border-bottom: 1px solid var(--card-border);
            background: #111;
        }

        /* Real Photo With Blur Applied */
        .fake-blur-photo {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center;
            filter: blur(24px) contrast(1.2) brightness(0.85);
            transform: scale(1.2); /* hide edges of blur */
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .preview-card:hover .fake-blur-photo {
            filter: blur(20px) contrast(1.1) brightness(1.05);
            transform: scale(1.15);
        }

        .censored-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            z-index: 2;
            pointer-events: none;
            text-align: center;
        }

        .lock-icon {
            width: 48px;
            height: 48px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            color: var(--accent-primary);
        }
        
        .unlock-text {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .preview-body {
            padding: 24px;
        }

        .preview-body h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .preview-body p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Feed Simulation */
        .feed-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .feed-post {
            padding: 24px;
            border-radius: var(--radius-lg);
            display: flex;
            gap: 20px;
            transition: var(--transition);
        }

        .feed-post:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .feed-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feed-content h4 {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .feed-time {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: normal;
        }

        .feed-content p {
            color: #e4e4e7;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            padding: 24px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question span {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            font-size: 1.2rem;
            line-height: 1;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease-out;
            color: var(--text-muted);
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            padding: 0 24px 24px;
            max-height: 200px;
            opacity: 1;
        }

        /* Final CTA & Timer */
        .final-cta {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(to top, var(--bg-grad-1), transparent);
            border-radius: var(--radius-lg);
            border: 1px solid var(--card-border);
            margin-bottom: 40px;
        }

        .final-cta h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .final-cta p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .timer-container {
            margin-bottom: 40px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.3);
            padding: 24px 48px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15), inset 0 0 20px rgba(239, 68, 68, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .timer-label {
            font-size: 0.95rem;
            color: #fca5a5;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .timer-display {
            font-size: 3.5rem;
            font-weight: 900;
            color: #ff5555;
            text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
            font-variant-numeric: tabular-nums;
            line-height: 1;
            letter-spacing: 2px;
        }

        /* Sticky Mobile CTA */
        .sticky-nav {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(150px);
            width: calc(100% - 48px);
            max-width: 400px;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: none;
        }

        .sticky-nav.is-visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .sticky-nav a {
            width: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow);
        }

        footer {
            text-align: center;
            padding: 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
            border-top: 1px solid var(--card-border);
        }

        footer p {
            margin-bottom: 10px;
        }

        /* Animations */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 var(--glow); }
            70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .hero-grid,
            .layout-reverse .hero-grid,
            .layout-centered .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            /* On mobile, layout-reverse puts IMAGE FIRST, TEXT SECOND */
            .layout-reverse .hero-content {
                order: 2;
            }
            .layout-reverse .visual-wrapper {
                order: 1;
            }
            
            /* On mobile, layout-centered keeps TEXT FIRST, IMAGE SECOND */
            .layout-centered .hero-content {
                order: 1;
            }
            .layout-centered .visual-wrapper {
                order: 2;
            }
            
            /* Default layout keeps TEXT FIRST */
            .layout-default .hero-content {
                order: 1;
            }
            .layout-default .visual-wrapper {
                order: 2;
            }

            .subtitle {
                margin: 0 auto 30px;
            }

            .cta-group {
                justify-content: center;
            }

            .trust-badges {
                justify-content: center;
            }

            .floating-notif {
                left: 50%;
                transform: translateX(-50%);
                bottom: -20px;
            }

            @keyframes float {
                0%, 100% { transform: translate(-50%, 0); }
                50% { transform: translate(-50%, -12px); }
            }
        }

        @media (max-width: 768px) {
            body { padding-bottom: 120px; }
            .section { padding: 30px 0; }
            .hero { padding: 30px 0 10px; }
            .sticky-nav { display: block; }
            .header-btn { display: none; }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .stat-card { padding: 12px; }
            .stat-num { font-size: 1.4rem; }
            .stat-label { font-size: 0.7rem; }
        }

        @media (max-width: 480px) {
            .preview-grid { grid-template-columns: 1fr; }
            .feed-post {
                flex-direction: column;
                padding: 16px;
                text-align: center;
                align-items: center;
            }
            .feed-avatar { margin-bottom: 8px; }
            .feed-content h4 { justify-content: center; }
            .trust-badges { gap: 10px; }
            .trust-badge { font-size: 0.8rem; }
        }
