
        
        .logo-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
            letter-spacing: 2px;
            margin: 0;
        }

        
        .modal-ad-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .modal-ad-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        
        .modal-ad-container {
            position: relative;
            background-color: var(--bg-card);
            border: 2px solid var(--accent-gold);
            border-radius: 16px;
            padding: 30px;
            max-width: 700px;
            width: 90%;
            box-shadow: 0 10px 50px rgba(251, 191, 36, 0.3);
            transform: scale(0.7) translateY(-50px);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .modal-ad-overlay.show .modal-ad-container {
            transform: scale(1) translateY(0);
        }

        
        .modal-ad-close {
            position: absolute;
            top: -15px;
            right: -15px;
            background-color: #ef4444;
            border: 3px solid var(--bg-card);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
        }

        .modal-ad-close:hover {
            background-color: #dc2626;
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.7);
        }

        
        .modal-ad-content {
            width: 100%;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(15, 16, 32, 0.05) 100%);
            border-radius: 12px;
            border: 2px dashed var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .modal-ad-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(251, 191, 36, 0.1),
                transparent
            );
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .ad-placeholder {
            text-align: center;
            color: var(--text-secondary);
            z-index: 1;
            position: relative;
        }

        .ad-placeholder i {
            font-size: 4rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            opacity: 0.6;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .ad-placeholder p {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .ad-placeholder span {
            font-size: 1rem;
            opacity: 0.7;
        }

        
        @media (max-width: 768px) {
            .modal-ad-container {
                max-width: 95%;
                padding: 20px;
            }

            .modal-ad-content {
                min-height: 300px;
            }

            .ad-placeholder i {
                font-size: 3rem;
            }

            .ad-placeholder p {
                font-size: 1.1rem;
            }
        }

        
        .hero-section {
            text-align: center;
            padding: 80px 20px 60px 20px;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(15, 16, 32, 0) 100%);
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .hero-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            background-color: var(--accent-gold);
            color: #000;
            padding: 15px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
        }

        .hero-btn.secondary {
            background-color: #1a1d2e;
            color: var(--text-primary);
            border: 1px solid #2d3748;
            box-shadow: none;
        }

        .hero-btn.secondary:hover {
            background-color: #1f2230;
            border-color: var(--accent-gold);
        }

        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .feature-card {
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            text-align: center;
        }

        .feature-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .feature-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        
        .stats-section {
            background-color: var(--bg-card);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            margin-bottom: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        
        .kit-showcase {
            margin-bottom: 60px;
        }

        .kit-showcase-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 40px;
        }

        .kit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

        .kit-showcase-item {
            background-color: var(--bg-card);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .kit-showcase-item:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(251, 191, 36, 0.2);
        }

        .kit-showcase-item img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            object-fit: contain;
        }

        .kit-showcase-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        
        .sponsors-section {
            margin-bottom: 60px;
        }

        .sponsors-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 40px;
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .sponsor-card {
            background-color: var(--bg-card);
            padding: 35px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sponsor-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
            transform: translateY(-5px);
        }

        .sponsor-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(15, 16, 32, 0) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 2px solid var(--border-color);
        }

        .sponsor-logo i {
            font-size: 2.5rem;
            color: var(--accent-gold);
        }

        .sponsor-name {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .sponsor-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .sponsor-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .sponsor-link:hover {
            gap: 12px;
        }

        .sponsor-link i {
            font-size: 0.9rem;
        }

        
        .cta-section {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(15, 16, 32, 0) 100%);
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

        .cta-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .sponsors-grid {
                grid-template-columns: 1fr;
            }
        }