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

        :root {
            --primary-red: #FF0000;
            --dark-red: #CC0000;
            --silver: #C0C0C0;
            --dark-bg: #0A0A0A;
            --darker-bg: #000000;
            --light-text: #FFFFFF;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-red);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            position: relative;
            height: 75px;
            max-width: 200px;
            width: auto;
            filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
            background: transparent !important;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        
        .logo img, #logo {
            height: 75px;
            max-height: 75px;
            width: auto;
            max-width: 200px;
            display: block;
            object-fit: contain;
        }


        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            margin: 0;
            padding: 0;
            z-index: 50;
            position: relative;
        }

        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(255, 0, 0, 0.03) 10px,
                    rgba(255, 0, 0, 0.03) 20px
                );
            animation: slidePattern 20s linear infinite;
        }

        @keyframes slidePattern {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(28px) translateY(28px); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(8.28rem, 20.7vw, 18.63rem); /* Reduced 10% from previous */
            font-weight: bold;
            color: var(--primary-red);
            line-height: 0.9;
            text-shadow: 
                0 0 15px rgba(255, 0, 0, 0.4),
                0 0 30px rgba(255, 0, 0, 0.3),
                0 0 45px rgba(255, 0, 0, 0.2),
                5px 5px 0 rgba(0, 0, 0, 0.8);
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { 
                text-shadow: 
                    0 0 15px rgba(255, 0, 0, 0.4),
                    0 0 30px rgba(255, 0, 0, 0.3),
                    0 0 45px rgba(255, 0, 0, 0.2),
                    5px 5px 0 rgba(0, 0, 0, 0.8);
            }
            50% { 
                text-shadow: 
                    0 0 25px rgba(255, 0, 0, 0.5),
                    0 0 40px rgba(255, 0, 0, 0.4),
                    0 0 60px rgba(255, 0, 0, 0.3),
                    5px 5px 0 rgba(0, 0, 0, 0.8);
            }
        }

        .hero-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            letter-spacing: 8px;
            margin: -2rem 0 1rem;
            color: var(--silver);
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--light-text);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: var(--primary-red);
        }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--primary-red);
            display: block;
            line-height: 1;
            margin-top: 1rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--silver);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0.5rem;
        }

        /* Racing stripe decoration */
        .racing-stripe {
            position: absolute;
            width: 100%;
            height: 200px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-red) 0px,
                var(--primary-red) 40px,
                transparent 40px,
                transparent 80px
            );
            opacity: 0.1;
            transform: skewY(-3deg);
            top: 30%;
            animation: slideStripe 3s linear infinite;
        }

        @keyframes slideStripe {
            0% { transform: skewY(-3deg) translateX(0); }
            100% { transform: skewY(-3deg) translateX(80px); }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-indicator::after {
            content: '▼';
            font-size: 2rem;
            color: var(--primary-red);
            display: block;
        }

        /* About Section */
        .about-section {
            padding: 6rem 2rem;
            background: var(--dark-bg);
        }

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

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid var(--primary-red);
            z-index: -1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }

        .about-image:hover img {
            filter: grayscale(0%);
        }

        .about-text h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
            letter-spacing: 4px;
        }

        .about-text h3 {
            font-size: 1.5rem;
            color: var(--silver);
            margin-bottom: 2rem;
            letter-spacing: 2px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
            border-left: 4px solid var(--primary-red);
            padding: 2rem;
            margin: 2rem 0;
        }

        .highlight-box strong {
            color: var(--primary-red);
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '64';
            position: absolute;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 40rem;
            color: rgba(255, 0, 0, 0.05);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta-section h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: var(--light-text);
            margin-bottom: 2rem;
            letter-spacing: 6px;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .btn {
            padding: 1.2rem 3rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid var(--primary-red);
            background: transparent;
            color: var(--light-text);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-red);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
        }

        .btn-primary {
            background: var(--primary-red);
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 3rem 2rem;
            border-top: 2px solid var(--primary-red);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: right;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo, #footerLogo {
            height: 50px;
            width: auto;
            display: block;
        }

        .social-links {
            display: flex;
            gap: 2rem;
        }

        .social-links a {
            color: var(--silver);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-red);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            width: 100%;
            margin-top: 2rem;
            color: var(--silver);
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
            padding: 0.5rem;
            position: relative;
            width: 40px;
            height: 40px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--light-text);
            margin: 5px auto;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
                border-bottom: 2px solid var(--primary-red);
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 0, 0, 0.2);
            }

            .nav-links a {
                display: block;
                font-size: 1.3rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 2rem;
            }

            .about-text h2 {
                font-size: 3rem;
            }
        }
        .age-ticker {
            display: inline-block;
            color: var(--primary-red);
            font-weight: 700;
            position: relative;
            padding: 0 4px;
        }

        .age-ticker::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
            animation: underlineGlow 2s ease-in-out infinite;
        }

        @keyframes underlineGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .age-ticker.updating {
            animation: countUp 0.5s ease-out;
        }

        /* SVG Icons */
        .why-icon {
            width: 48px;
            height: 48px;
            stroke: var(--primary-red);
            fill: none;
            stroke-width: 2;
        }


        /* Universal Image Sizing */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Gallery Images */
        .gallery-grid img,
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Photo Slider */
        .photo-slider img {
            max-width: 100%;
            max-height: 600px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Profile Images */
        .about-image img,
        .profile-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: cover;
        }

        /* Sponsor Logo */
        .sponsor-logo img {
            max-width: 300px;
            height: auto;
        }

        /* Hero/Section Images */
        .hero img,
        section img:not(.footer-logo):not(#logo) {
            max-width: 100%;
            height: auto;
        }

