:root {
            --primary: #1E88E5;
            --secondary: #FFC107;
            --accent: #26A69A;
            --light: #F5F7FA;
            --dark: #0D47A1;
            --gray: #607D8B;
            --success: #4CAF50;
            --warning: #FF9800;
            --danger: #F44336;
            --space: #0A1929;
            --neon: #00E5FF;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: var(--space);
            color: var(--light);
            line-height: 1.8;
            padding-bottom: 80px;
            letter-spacing: 0.3px;
            background-image: 
                radial-gradient(circle at 25% 10%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--space));
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--neon);
        }
        header:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }
        .logo span {
            color: var(--neon);
            margin: 0 8px;
            display: inline-block;
            animation: pulse 2s infinite;
        }
        .logo:after {
            content: "🚀";
            margin-left: 12px;
            font-size: 1.9rem;
        }
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; text-shadow: 0 0 15px rgba(0, 229, 255, 0.8); }
            100% { opacity: 0.7; }
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 1.05rem;
            position: relative;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        nav a.active {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            box-shadow: 0 0 10px rgba(30, 136, 229, 0.5);
        }
        nav a:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon);
            transition: width 0.3s ease;
        }
        nav a:hover:after {
            width: 100%;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 35px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1.05rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--dark);
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
        }
        .btn-login {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(30, 136, 229, 0.4);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .btn-download:hover {
            background-color: #FFB300;
            color: #002171;
        }
        .btn-login:hover {
            background-color: #1565C0;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon);
            background: none;
            border: none;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
        }
        .hero {
            padding: 100px 0;
            text-align: center;
            background: url('cosmic-crusaders-chennai-hero.jpg') no-repeat center center;
            background-size: cover;
            background-blend-mode: overlay;
            background-color: rgba(13, 71, 161, 0.85);
            color: white;
            border-radius: 25px;
            margin: 45px 0;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--neon);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
        }
        .hero:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 136, 229, 0.2), rgba(38, 166, 154, 0.2));
            z-index: 1;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(38, 166, 154, 0.1) 0%, transparent 30%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            text-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
            line-height: 1.3;
            font-weight: 900;
        }
        .hero h1 span {
            color: var(--neon);
            animation: glow 3s infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 10px rgba(0, 229, 255, 0.7), 0 0 20px rgba(0, 229, 255, 0.5); }
            to { text-shadow: 0 0 20px rgba(0, 229, 255, 0.9), 0 0 30px rgba(0, 229, 255, 0.7), 0 0 40px rgba(0, 229, 255, 0.5); }
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 950px;
            margin: 0 auto 45px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
            line-height: 1.9;
            font-weight: 300;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 45px;
            margin: 60px 0;
        }
        .main-content {
            background: rgba(10, 25, 41, 0.8);
            backdrop-filter: blur(10px);
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(10, 25, 41, 0.8);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(0, 229, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .sidebar-widget:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 229, 255, 0.2);
        }
        h2 {
            color: var(--neon);
            margin-bottom: 35px;
            font-size: 2.4rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 15px;
            position: relative;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }
        h2:after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--secondary);
        }
        h3 {
            color: var(--accent);
            margin: 40px 0 25px;
            font-size: 1.8rem;
            position: relative;
            padding-left: 25px;
            text-shadow: 0 0 8px rgba(38, 166, 154, 0.4);
        }
        h3:before {
            content: "🛸";
            position: absolute;
            left: 0;
            top: 2px;
        }
        h4 {
            color: var(--secondary);
            margin: 30px 0 18px;
            font-size: 1.4rem;
            text-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
        }
        p {
            margin-bottom: 30px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #E0E7FF;
        }
        strong {
            color: var(--neon);
            font-weight: 700;
            text-shadow: 0 0 5px rgba(0, 229, 255, 0.4);
        }
        .intro-box {
            background-color: rgba(38, 166, 154, 0.1);
            border-left: 5px solid var(--accent);
            padding: 30px;
            border-radius: 0 20px 20px 0;
            margin: 45px 0;
            border-top: 1px solid rgba(38, 166, 154, 0.3);
            border-bottom: 1px solid rgba(38, 166, 154, 0.3);
        }
        .intro-box p {
            margin-bottom: 0;
            font-size: 1.15rem;
            line-height: 1.9;
            color: #B2EBF2;
        }
        .feature-list {
            list-style: none;
            margin: 35px 0;
        }
        .feature-list li {
            margin-bottom: 25px;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #E0E7FF;
        }
        .feature-list li:before {
            content: "✨";
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 1.3rem;
        }
        .game-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 50px 0;
            text-align: center;
        }
        .stat-card {
            background-color: rgba(10, 25, 41, 0.6);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            border-top: 4px solid var(--neon);
            border: 1px solid rgba(0, 229, 255, 0.2);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
        }
        .stat-card h4 {
            color: var(--gray);
            font-size: 1.15rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 0;
        }
        .stat-card .stat-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--neon);
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }
        .quote {
            font-style: italic;
            padding: 35px;
            background-color: rgba(255, 193, 7, 0.08);
            border-left: 6px solid var(--secondary);
            margin: 50px 0;
            border-radius: 0 20px 20px 0;
            position: relative;
            border-top: 1px solid rgba(255, 193, 7, 0.2);
            border-bottom: 1px solid rgba(255, 193, 7, 0.2);
        }
        .quote:before {
            content: "\"";
            font-size: 6rem;
            color: rgba(255, 193, 7, 0.15);
            position: absolute;
            top: -25px;
            left: 15px;
            font-family: Georgia, serif;
        }
        .quote p {
            margin-bottom: 0;
            font-size: 1.2rem;
            line-height: 1.9;
            color: #FFF3E0;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 20px;
            font-weight: 600;
            color: var(--secondary);
            font-size: 1.1rem;
            text-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
        }
        .quote-author:before {
            content: "— ";
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            margin: 50px 0;
        }
        .gallery-card {
            background-color: rgba(10, 25, 41, 0.6);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
        }
        .gallery-img {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-card:hover .gallery-img img {
            transform: scale(1.08);
        }
        .gallery-info {
            padding: 25px;
        }
        .gallery-info h4 {
            margin-top: 0;
            color: var(--neon);
            font-size: 1.5rem;
        }
        .gallery-info .category {
            color: var(--gray);
            font-style: italic;
            margin-bottom: 15px;
            display: block;
        }
        .gallery-info p {
            margin-bottom: 0;
            font-size: 1.05rem;
            color: #E0E7FF;
        }
        .gameplay-video {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            margin: 50px 0;
            box-shadow: 0 8px 35px rgba(0,0,0,0.3);
            position: relative;
            background-color: #000;
            border: 1px solid var(--neon);
        }
        .gameplay-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background-color: rgba(30, 136, 229, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 4px solid var(--neon);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
        }
        .play-button:hover {
            background-color: var(--primary);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
        }
        .play-button:after {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 18px 0 18px 30px;
            border-color: transparent transparent transparent white;
            margin-left: 7px;
        }
        .tips-box {
            background-color: rgba(255, 193, 7, 0.08);
            border-radius: 20px;
            padding: 30px;
            margin: 50px 0;
            border-left: 5px solid var(--warning);
            border: 1px solid rgba(255, 193, 7, 0.2);
        }
        .tips-box h4 {
            color: var(--secondary);
            margin-top: 0;
            display: flex;
            align-items: center;
            font-size: 1.5rem;
        }
        .tips-box h4:before {
            content: "💫";
            margin-right: 12px;
            font-size: 1.8rem;
        }
        .tips-list {
            list-style: none;
            padding-left: 0;
        }
        .tips-list li {
            margin-bottom: 20px;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
            color: #E0E7FF;
        }
        .tips-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--warning);
            font-size: 1.8rem;
        }
        .tips-list li:last-child {
            margin-bottom: 0;
        }
        .tamil-influence {
            background-color: rgba(38, 166, 154, 0.1);
            border-radius: 20px;
            padding: 35px;
            margin: 50px 0;
            border: 1px solid rgba(38, 166, 154, 0.3);
            position: relative;
            overflow: hidden;
        }
        .tamil-influence:before {
            content: "தமிழ்";
            position: absolute;
            top: -20px;
            right: -10px;
            font-size: 120px;
            color: rgba(38, 166, 154, 0.05);
            font-family: 'Tamil MN', serif;
            z-index: 0;
        }
        .tamil-influence-content {
            position: relative;
            z-index: 1;
        }
        .tamil-influence h4 {
            color: var(--accent);
            margin-top: 0;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }
        .tamil-influence h4:before {
            content: "🏛️";
            margin-right: 12px;
        }
        .badge {
            display: inline-block;
            padding: 8px 15px;
            background-color: rgba(30, 136, 229, 0.2);
            color: var(--neon);
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        @media (max-width: 1200px) {
            .content {
                grid-template-columns: 1fr;
            }
            .game-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 950px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: rgba(13, 71, 161, 0.95);
                backdrop-filter: blur(10px);
                padding: 35px;
                gap: 25px;
                z-index: 999;
                border-radius: 0 0 25px 25px;
                box-shadow: 0 15px 30px rgba(0,0,0,0.4);
                border-bottom: 2px solid var(--neon);
                border-left: 2px solid var(--neon);
                border-right: 2px solid var(--neon);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-buttons {
                display: none;
            }
            .hero h1 {
                font-size: 3.2rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .main-content {
                padding: 35px;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 650px) {
            .game-stats {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .btn {
                padding: 11px 22px;
                font-size: 1rem;
                width: 100%;
                margin-bottom: 15px;
            }
            .btn-download {
                margin-right: 0;
            }
            .main-content {
                padding: 25px;
            }
            h2 {
                font-size: 1.9rem;
                margin-bottom: 30px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 20px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 25px;
            }
            .gameplay-video {
                height: 300px;
            }
            .play-button {
                width: 70px;
                height: 70px;
            }
            .play-button:after {
                border-width: 14px 0 14px 24px;
            }
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 40px;
            margin-top: 80px;
            border-top: 3px solid var(--neon);
            box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 20%);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            margin-bottom: 60px;
        }
        .footer-column h4 {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: var(--neon);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(0, 229, 255, 0.3);
            margin-top: 0;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 20px;
        }
        .footer-column a {
            color: #BBDEFB;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            display: inline-block;
        }
        .footer-column a:hover {
            color: var(--neon);
            padding-left: 10px;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #90CAF9;
            font-size: 1rem;
            line-height: 1.8;
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .game-tag {
            padding: 12px 22px;
            background-color: rgba(10, 25, 41, 0.6);
            border-radius: 35px;
            font-size: 1rem;
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        .game-tag:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--neon);
            transform: translateY(-3px);
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
        }
        .recommendation {
            background-color: rgba(30, 136, 229, 0.1);
            border-radius: 20px;
            padding: 35px;
            margin: 50px 0;
            border-left: 5px solid var(--primary);
            border: 1px solid rgba(30, 136, 229, 0.3);
        }
        .recommendation h4 {
            color: var(--neon);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        .recommendation h4:before {
            content: "🏆";
            margin-right: 12px;
        }
        .recommendation p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #E0E7FF;
        }
        .mobile-buttons {
            display: none;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            width: 100%;
        }
        @media (max-width: 950px) {
            .mobile-buttons {
                display: flex;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 650px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #0A1929;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 6px;
            border: 2px solid #0A1929;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--neon);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 9999;
            border: 2px solid var(--neon);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--dark);
            transform: translateY(-8px);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
        }
        img {
            transition: opacity 0.8s ease;
            opacity: 0;
        }
        img.loaded {
            opacity: 1;
        }
        .progress-container {
            width: 100%;
            height: 4px;
            background: transparent;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10000;
        }
        .progress-bar {
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--neon));
            width: 0%;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon), transparent);
            margin: 60px 0;
            opacity: 0.5;
        }
