:root {
            --primary-red: #E50914;
            --primary-dark: #0A0A0A;
            --secondary-red: #B81D24;
            --accent-red: #FF2E2E;
            --light-gray: #F5F5F5;
            --text-light: #FFFFFF;
            --text-dark: #1A1A1A;
            --gradient-red: linear-gradient(135deg, #E50914 0%, #B81D24 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background-color: var(--primary-dark);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrolling Banner */
        .scrolling-banner {
            background: var(--gradient-red);
            color: var(--text-light);
            padding: 15px 0;
            overflow: hidden;
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }
        
        .scrolling-content {
            display: flex;
            white-space: nowrap;
            animation: scrollBanner 30s linear infinite;
        }
        
        .scrolling-item {
            display: inline-flex;
            align-items: center;
            margin-right: 60px;
            font-size: 18px;
            font-weight: 600;
            padding: 5px 0;
        }
        
        .scrolling-item i {
            margin-right: 10px;
            color: #FFD700;
        }
        
        @keyframes scrollBanner {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            letter-spacing: 2px;
            color: var(--text-light);
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-red);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--text-light);
            font-size: 24px;
        }
        
        .logo-text {
            background: var(--gradient-red);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-red);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-red);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .header-btn {
            background: var(--gradient-red);
            color: var(--text-light);
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
        }
        
        .header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
        }
        
        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-red);
            color: var(--text-light);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 72px;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 25px;
            letter-spacing: 2px;
            background: linear-gradient(to right, #FFFFFF, var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }
        
        .hero-subtitle {
            font-size: 24px;
            color: #E0E0E0;
            margin-bottom: 40px;
            font-weight: 500;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }
        
        .hero-feature {
            text-align: center;
            padding: 20px;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--text-light);
            font-size: 28px;
        }
        
        .feature-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-light);
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-tag {
            display: inline-block;
            color: var(--primary-red);
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 56px;
            font-weight: 400;
            margin-bottom: 30px;
            color: var(--text-light);
            letter-spacing: 1.5px;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: #B0B0B0;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .step-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            border: 1px solid rgba(229, 9, 20, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-red);
            box-shadow: 0 20px 40px rgba(229, 9, 20, 0.15);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--text-light);
            font-size: 28px;
            font-weight: 700;
            font-family: 'Bebas Neue', sans-serif;
        }
        
        .step-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .step-card p {
            color: #B0B0B0;
            font-size: 18px;
            line-height: 1.7;
        }
        
        /* Success Stories Section */
        .stories-section {
            padding: 120px 0;
            background: var(--primary-dark);
        }
        
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .story-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(229, 9, 20, 0.2);
            transition: all 0.3s ease;
        }
        
        .story-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-red);
            box-shadow: 0 15px 30px rgba(229, 9, 20, 0.2);
        }
        
        .story-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background-color: #333;
        }
        
        .story-content {
            padding: 40px;
        }
        
        .story-quote {
            font-size: 18px;
            color: #E0E0E0;
            margin-bottom: 25px;
            line-height: 1.8;
            font-style: italic;
            position: relative;
            padding-left: 30px;
        }
        
        .story-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 60px;
            color: var(--primary-red);
            font-family: 'Bebas Neue', sans-serif;
            opacity: 0.5;
        }
        
        .story-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 2px solid var(--primary-red);
            background-color: #333;
        }
        
        .author-info h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #B0B0B0;
            font-size: 14px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #E50914 0%, #B81D24 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }
        
        .cta-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 64px;
            font-weight: 400;
            margin-bottom: 30px;
            color: var(--text-light);
            letter-spacing: 2px;
            position: relative;
        }
        
        .cta-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }
        
        .cta-btn {
            display: inline-block;
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 20px 50px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 800;
            font-size: 20px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .cta-btn:hover {
            background: #000000;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        /* Footer */
        footer {
            background-color: #000000;
            color: var(--text-light);
            padding: 80px 0 30px;
            border-top: 2px solid var(--primary-red);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        
        .footer-logo span {
            background: var(--gradient-red);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-text {
            color: #B0B0B0;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }
        
        .social-icon:hover {
            background: var(--gradient-red);
            transform: translateY(-3px);
        }
        
        .footer-heading {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-light);
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #B0B0B0;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--primary-red);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 60px;
            }
            
            .cta-title {
                font-size: 54px;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 48px;
            }
            
            .section-title {
                font-size: 44px;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .cta-title {
                font-size: 42px;
            }
            
            .stories-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .cta-title {
                font-size: 36px;
            }
        }
        
        /* Image fallback styles */
        .image-fallback {
            width: 100%;
            height: 250px;
            background: var(--gradient-red);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }
        
        .image-fallback i {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        /* Hidden Google Ads Content */
        .keywords-section {
            display: none;
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }