 :root {
            --primary-black: #000000;
            --secondary-black: #0a0a0a;
            --card-black: #111111;
            --border-dark: #222222;
            --neon-red: #ff003c;
            --neon-red-glow: #ff003c;
            --neon-pink: #ff0066;
            --neon-orange: #ff3300;
            --text-white: #ffffff;
            --text-gray: #cccccc;
            --text-light: #999999;
            --accent-blue: #00ccff;
            --accent-purple: #9900ff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            color: var(--text-white);
            background-color: var(--primary-black);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 0, 60, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 102, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, var(--primary-black) 100%);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
            border-radius: 2px;
        }
        
        .section-title h2 span {
            color: var(--neon-red);
            text-shadow: 0 0 10px var(--neon-red-glow);
        }
        
        .section-title p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.2rem;
            font-family: 'Exo 2', sans-serif;
        }
        
        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 36px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--neon-red), var(--neon-orange));
            color: var(--text-white);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
            border: 1px solid rgba(255, 0, 60, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(255, 0, 60, 0.6);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--text-white);
            border: 2px solid var(--neon-red);
            box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 0, 60, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 0, 60, 0.4);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--text-white);
            border: 2px solid var(--border-dark);
        }
        
        .btn-outline:hover {
            border-color: var(--neon-red);
            box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 60, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            position: relative;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-weight: 900;
            font-size: 1.5rem;
            box-shadow: 0 0 15px var(--neon-red-glow);
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: logoShine 3s infinite linear;
        }
        
        @keyframes logoShine {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
        }
        
        .nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            font-family: 'Exo 2', sans-serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
            transition: width 0.3s ease;
            box-shadow: 0 0 5px var(--neon-red-glow);
        }
        
        .nav-links a:hover {
            color: var(--neon-red);
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-buttons {
            display: flex;
            gap: 20px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 1px solid var(--neon-red);
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            background-color: rgba(255, 0, 60, 0.1);
            box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }
        
        /* Hero Section */
        .hero {
            padding-top: 180px;
            padding-bottom: 120px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 60, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 102, 0.05) 0%, transparent 40%);
            z-index: -1;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            line-height: 1.1;
            text-transform: uppercase;
        }
        
        .hero-text h1 span {
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink), var(--neon-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
        }
        
        .hero-text p {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 500px;
            font-family: 'Exo 2', sans-serif;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 25px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background-color: rgba(17, 17, 17, 0.7);
            border-radius: 8px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 0, 60, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .stat-item:hover::before {
            transform: translateX(100%);
        }
        
        .stat-item:hover {
            border-color: rgba(255, 0, 60, 0.3);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.1);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--neon-red);
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
        }
        
        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-visual {
            position: relative;
        }
        
        .dashboard-preview {
            background-color: var(--card-black);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid rgba(255, 0, 60, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .dashboard-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
        }
        
        .chart-container {
            height: 220px;
            background: linear-gradient(180deg, rgba(17, 17, 17, 0.9) 0%, rgba(34, 34, 34, 0.9) 100%);
            border-radius: 8px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 60, 0.1);
        }
        
        .chart-line {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 0, 60, 0.1) 50%, transparent 100%);
            animation: chartPulse 3s infinite alternate;
        }
        
        @keyframes chartPulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
        
        .market-data {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .market-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .market-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .market-row span:first-child {
            font-family: 'Exo 2', sans-serif;
            font-weight: 500;
        }
        
        .market-row span:nth-child(2) {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
        }
        
        .market-row span:last-child {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            color: var(--neon-red);
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background-color: var(--card-black);
            border-radius: 12px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--neon-red), var(--neon-pink));
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 0, 60, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            background-color: rgba(255, 0, 60, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: var(--neon-red);
            font-size: 2rem;
            border: 1px solid rgba(255, 0, 60, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 0, 60, 0.1), transparent);
            transform: rotate(45deg);
            animation: iconShine 5s infinite linear;
        }
        
        @keyframes iconShine {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .feature-card p {
            color: var(--text-gray);
            font-family: 'Exo 2', sans-serif;
            line-height: 1.7;
        }
        
        /* Why Us Section */
        .why-us {
            background-color: rgba(10, 10, 10, 0.8);
            position: relative;
            overflow: hidden;
        }
        
        .why-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 10%, rgba(255, 0, 60, 0.03) 0%, transparent 30%),
                radial-gradient(circle at 90% 90%, rgba(255, 0, 102, 0.03) 0%, transparent 30%);
            z-index: -1;
        }
        
        .why-us-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .why-us-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
            border: 1px solid rgba(255, 0, 60, 0.1);
            position: relative;
        }
        
        .why-us-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 0, 60, 0.05), transparent);
            animation: imageShine 8s infinite linear;
            z-index: 1;
        }
        
        @keyframes imageShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .image-placeholder {
            height: 500px;
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(34, 34, 34, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-red);
            font-size: 5rem;
        }
        
        .why-us-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .why-us-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
        
        .why-us-icon {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border-radius: 10px;
            background-color: rgba(255, 0, 60, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-red);
            font-size: 1.8rem;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .why-us-item h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-white);
        }
        
        .why-us-item p {
            color: var(--text-gray);
            font-family: 'Exo 2', sans-serif;
            line-height: 1.7;
        }
        
        /* Testimonials */
        .testimonials-slider {
            position: relative;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            flex: 0 0 100%;
            background-color: var(--card-black);
            border-radius: 12px;
            padding: 50px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .testimonial-rating {
            color: var(--neon-red);
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 40px;
            line-height: 1.8;
            color: var(--text-gray);
            font-family: 'Exo 2', sans-serif;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            color: rgba(255, 0, 60, 0.2);
            font-family: serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
        }
        
        .testimonial-info h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        
        .testimonial-info p {
            color: var(--text-light);
            font-size: 1rem;
            font-family: 'Exo 2', sans-serif;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }
        
        .slider-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--card-black);
            border: 1px solid rgba(255, 0, 60, 0.2);
            color: var(--text-white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background-color: rgba(255, 0, 60, 0.1);
            border-color: var(--neon-red);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
            transform: scale(1.1);
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--neon-red);
            box-shadow: 0 0 15px var(--neon-red-glow);
            transform: scale(1.2);
        }
        
        /* Resources Section */
        .resources {
            background-color: rgba(10, 10, 10, 0.8);
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .resource-card {
            background-color: var(--card-black);
            border-radius: 12px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
        }
        
        .resource-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 0, 60, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
        }
        
        .resource-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background-color: rgba(255, 0, 60, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--neon-red);
            font-size: 2.5rem;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .resource-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .resource-card p {
            color: var(--text-gray);
            margin-bottom: 30px;
            font-family: 'Exo 2', sans-serif;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.9));
            padding: 100px 0;
            border-radius: 20px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 60, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink), var(--neon-orange));
        }
        
        .cta h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        
        .cta h2 span {
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
        }
        
        .cta p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 50px;
            font-size: 1.3rem;
            font-family: 'Exo 2', sans-serif;
        }
        
        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Footer */
        footer {
            background-color: #000000;
            padding-top: 100px;
            padding-bottom: 50px;
            border-top: 1px solid rgba(255, 0, 60, 0.1);
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--text-white);
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Exo 2', sans-serif;
        }
        
        .footer-links a:hover {
            color: var(--neon-red);
            transform: translateX(5px);
        }
        
        .footer-links a i {
            color: var(--neon-red);
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            background-color: rgba(255, 0, 60, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .social-link:hover {
            background-color: var(--neon-red);
            color: #000;
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 0.9rem;
            font-family: 'Exo 2', sans-serif;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .hero-content, .why-us-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-text {
                text-align: center;
            }
            
            .hero-text p {
                margin: 0 auto 40px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .nav-links, .nav-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding-top: 150px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                padding: 40px 25px;
            }
            
            .why-us-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .why-us-icon {
                margin-bottom: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
            }
            
            .feature-card, .resource-card {
                padding: 30px 20px;
            }
            
            .cta {
                padding: 60px 20px;
                margin: 60px 0;
                border-radius: 15px;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.98);
            padding: 40px 30px;
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            backdrop-filter: blur(10px);
        }
        
        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .mobile-nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            font-family: 'Exo 2', sans-serif;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .mobile-nav-links a:hover {
            color: var(--neon-red);
            border-bottom-color: rgba(255, 0, 60, 0.3);
        }
        
        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* Animation Classes */
        .animate-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-element.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Glitch Effect */
        .glitch {
            position: relative;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 var(--neon-red);
            animation: glitch-1 2s infinite linear alternate-reverse;
        }
        
        .glitch::after {
            left: -2px;
            text-shadow: 2px 0 var(--neon-pink);
            animation: glitch-2 3s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-1 {
            0% { clip: rect(44px, 450px, 56px, 0); }
            5% { clip: rect(44px, 450px, 56px, 0); }
            10% { clip: rect(85px, 450px, 66px, 0); }
            15% { clip: rect(86px, 450px, 79px, 0); }
            20% { clip: rect(97px, 450px, 94px, 0); }
            25% { clip: rect(1px, 450px, 94px, 0); }
            30% { clip: rect(73px, 450px, 85px, 0); }
            35% { clip: rect(18px, 450px, 53px, 0); }
            40% { clip: rect(37px, 450px, 27px, 0); }
            45% { clip: rect(39px, 450px, 17px, 0); }
            50% { clip: rect(12px, 450px, 39px, 0); }
            55% { clip: rect(64px, 450px, 32px, 0); }
            60% { clip: rect(63px, 450px, 23px, 0); }
            65% { clip: rect(47px, 450px, 35px, 0); }
            70% { clip: rect(80px, 450px, 13px, 0); }
            75% { clip: rect(35px, 450px, 28px, 0); }
            80% { clip: rect(61px, 450px, 43px, 0); }
            85% { clip: rect(10px, 450px, 29px, 0); }
            90% { clip: rect(21px, 450px, 73px, 0); }
            95% { clip: rect(12px, 450px, 88px, 0); }
            100% { clip: rect(77px, 450px, 9px, 0); }
        }
        
        @keyframes glitch-2 {
            0% { clip: rect(65px, 450px, 98px, 0); }
            5% { clip: rect(52px, 450px, 77px, 0); }
            10% { clip: rect(1px, 450px, 27px, 0); }
            15% { clip: rect(15px, 450px, 84px, 0); }
            20% { clip: rect(18px, 450px, 44px, 0); }
            25% { clip: rect(57px, 450px, 51px, 0); }
            30% { clip: rect(44px, 450px, 47px, 0); }
            35% { clip: rect(76px, 450px, 81px, 0); }
            40% { clip: rect(34px, 450px, 23px, 0); }
            45% { clip: rect(49px, 450px, 83px, 0); }
            50% { clip: rect(61px, 450px, 93px, 0); }
            55% { clip: rect(2px, 450px, 70px, 0); }
            60% { clip: rect(57px, 450px, 95px, 0); }
            65% { clip: rect(88px, 450px, 90px, 0); }
            70% { clip: rect(82px, 450px, 16px, 0); }
            75% { clip: rect(45px, 450px, 61px, 0); }
            80% { clip: rect(58px, 450px, 49px, 0); }
            85% { clip: rect(44px, 450px, 17px, 0); }
            90% { clip: rect(85px, 450px, 79px, 0); }
            95% { clip: rect(29px, 450px, 63px, 0); }
            100% { clip: rect(2px, 450px, 11px, 0); }
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 10%, rgba(255, 0, 60, 0.03) 0%, transparent 30%),
                radial-gradient(circle at 90% 90%, rgba(255, 0, 102, 0.03) 0%, transparent 30%);
            z-index: -1;
        }
        
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--neon-red), var(--neon-pink), transparent);
            box-shadow: 0 0 20px var(--neon-red-glow);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 100px;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 40px);
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 40px);
        }
        
        .timeline-content {
            background-color: var(--card-black);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 0, 60, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
        }
        
        .timeline-number {
            position: absolute;
            top: 20px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Orbitron', sans-serif;
            box-shadow: 0 0 25px var(--neon-red-glow);
            z-index: 10;
        }
        
        .timeline-item:nth-child(odd) .timeline-number {
            right: -35px;
        }
        
        .timeline-item:nth-child(even) .timeline-number {
            left: -35px;
        }
        
        .timeline-icon {
            font-size: 2.5rem;
            color: var(--neon-red);
            margin-bottom: 20px;
        }
        
        .timeline-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .timeline-content p {
            color: var(--text-gray);
            font-family: 'Exo 2', sans-serif;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .timeline-features {
            list-style: none;
            margin-top: 20px;
        }
        
        .timeline-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-gray);
        }
        
        .timeline-features li i {
            color: var(--neon-red);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--card-black);
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: rgba(255, 0, 60, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .faq-question {
            padding: 25px 30px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.02);
            position: relative;
        }
        
        .faq-question::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 60, 0.3), transparent);
        }
        
        .faq-question:hover {
            background-color: rgba(255, 0, 60, 0.05);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background-color: rgba(255, 255, 255, 0.01);
        }
        
        .faq-item.active .faq-answer {
            padding: 25px 30px 30px;
            max-height: 500px;
        }
        
        .faq-toggle {
            color: var(--neon-red);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }
        
        .faq-answer p {
            color: var(--text-gray);
            font-family: 'Exo 2', sans-serif;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        .faq-answer ul {
            list-style: none;
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .faq-answer ul li {
            margin-bottom: 10px;
            padding-left: 10px;
            position: relative;
            color: var(--text-gray);
        }
        
        .faq-answer ul li::before {
            content: '▸';
            position: absolute;
            left: -15px;
            color: var(--neon-red);
        }
        
        /* Awards Section */
        .awards {
            background-color: rgba(10, 10, 10, 0.8);
        }
        
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .award-card {
            background-color: var(--card-black);
            border-radius: 12px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 0, 60, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .award-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-pink));
        }
        
        .award-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 0, 60, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 60, 0.1);
        }
        
        .award-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: rgba(255, 0, 60, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--neon-red);
            font-size: 3rem;
            border: 1px solid rgba(255, 0, 60, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .award-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 0, 60, 0.1), transparent);
            transform: rotate(45deg);
            animation: awardShine 8s infinite linear;
        }
        
        @keyframes awardShine {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }
        
        .award-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-white);
        }
        
        .award-card p {
            color: var(--text-gray);
            font-family: 'Exo 2', sans-serif;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .award-year {
            display: inline-block;
            padding: 8px 20px;
            background-color: rgba(255, 0, 60, 0.1);
            color: var(--neon-red);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        /* Animation Classes */
        .animate-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-element.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 80px;
                padding-right: 0;
                text-align: left;
            }
            
            .timeline-item:nth-child(odd) .timeline-number,
            .timeline-item:nth-child(even) .timeline-number {
                left: 0;
                right: auto;
                transform: translateX(-50%);
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .timeline-content {
                padding: 30px 20px;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 1.1rem;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-item.active .faq-answer {
                padding: 20px;
            }
            
            .award-card {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .timeline-content h3 {
                font-size: 1.5rem;
            }
            
            .faq-question {
                font-size: 1rem;
                padding: 15px;
            }
            
            .faq-item.active .faq-answer {
                padding: 15px;
            }
        }