  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #FFD700;
            --accent-yellow: #FFC107;
            --dark-primary: #000000;
            --dark-secondary: #1a1a1a;
            --dark-tertiary: #2d2d2d;
            --text-light: #ffffff;
            --text-gray: #cccccc;
            --shadow-gold: rgba(255, 215, 0, 0.3);
            --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
            --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background: var(--gradient-dark);
            overflow-x: hidden;
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .hero-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            color: var(--text-gray);
        }

        .countdown-wrapper {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid var(--primary-gold);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            text-align: center;
        }

        .countdown-header {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }

        .timer-display {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .timer-box {
            background: var(--primary-gold);
            color: var(--dark-primary);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            min-width: 70px;
        }

        .timer-value {
            font-size: 1.8rem;
            font-weight: bold;
            display: block;
        }

        .timer-unit {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px var(--shadow-gold);
        }

        .content-block {
            padding: 6rem 0;
            background: var(--dark-secondary);
        }

        .content-block:nth-child(even) {
            background: var(--dark-tertiary);
        }

        .block-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .block-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .block-header p {
            font-size: 1.3rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: var(--gradient-dark);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px var(--shadow-gold);
            border-color: var(--primary-gold);
        }

        .feature-card h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.8;
        }

        .feature-card .card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            color: var(--primary-gold);
        }

        .user-testimonials {
            margin: 4rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 215, 0, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-gold);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary-gold);
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .enhanced-feature-card {
            background: var(--gradient-dark);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .enhanced-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px var(--shadow-gold);
            border-color: var(--primary-gold);
        }

        .enhanced-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .feature-icon-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon-wrapper .card-icon {
            font-size: 2.5rem;
            margin-right: 1rem;
            margin-bottom: 0;
        }

        .feature-icon-wrapper h3 {
            margin-bottom: 0;
            font-size: 1.4rem;
        }

        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .analytics-card {
            background: var(--gradient-dark);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(255, 215, 0, 0.2);
            position: relative;
        }

        .analytics-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px var(--shadow-gold);
            border-color: var(--primary-gold);
        }

        .analytics-card .card-icon {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            display: block;
            color: var(--primary-gold);
        }

        .analytics-card h3 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .analytics-card p {
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .content-text {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .content-text h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .content-visual {
            text-align: center;
        }

        .content-visual img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .stats-showcase {
            background: rgba(255, 215, 0, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            margin: 3rem 0;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .stats-showcase h4 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .stats-list {
            list-style: none;
        }

        .stats-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: var(--text-gray);
        }

        .stats-list li::before {
            content: "★";
            color: var(--primary-gold);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .primary-btn {
            display: inline-block;
            background: var(--gradient-gold);
            color: var(--dark-primary);
            padding: 1.5rem 3.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px var(--shadow-gold);
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px var(--shadow-gold);
        }

        .floating-action {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-gold);
            color: var(--dark-primary);
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.4rem;
            font-weight: 700;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 20px 40px var(--shadow-gold);
            animation: pulse-breath 3s ease-in-out infinite;
            white-space: nowrap;
            max-width: 90vw;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @keyframes pulse-breath {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
        }

        .urgent-notice {
            background: var(--primary-gold);
            color: var(--dark-primary);
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 2rem;
            animation: glow-effect 2s ease-in-out infinite;
        }

        @keyframes glow-effect {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .highlight-section {
            background: var(--gradient-gold);
            color: var(--dark-primary);
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
        }

        .highlight-section h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .risk-disclosure {
            background: var(--dark-primary);
            color: var(--text-light);
            padding: 5rem 0;
        }

        .disclosure-header h3 {
            color: var(--primary-gold);
            margin-bottom: 2.5rem;
            font-size: 1.8rem;
        }

        .risk-items {
            list-style: none;
            margin-bottom: 3rem;
        }

        .risk-items li {
            margin-bottom: 1.2rem;
            padding-left: 2.5rem;
            position: relative;
            line-height: 1.6;
        }

        .risk-items li::before {
            content: "⚠";
            color: var(--primary-gold);
            position: absolute;
            left: 0;
            font-size: 1.3rem;
        }

        .footer-links {
            text-align: center;
            margin-top: 3rem;
        }

        .footer-links a {
            color: var(--primary-gold);
            text-decoration: none;
            margin: 0 2rem;
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .content-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .block-header h2 {
                font-size: 2.5rem;
            }

            .main-container {
                padding: 0 15px;
            }

            .floating-action {
                padding: 18px 40px;
                font-size: 1.2rem;
            }

            .timer-display {
                gap: 1rem;
            }

            .timer-box {
                min-width: 60px;
                padding: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .content-block {
                padding: 4rem 0;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .timer-display {
                gap: 0.5rem;
            }

            .timer-value {
                font-size: 1.5rem;
            }
        }