* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        :root {
            --primary: #E63946;
            --secondary: #457B9D;
            --accent: #F1FAEE;
            --dark: #1D3557;
            --light: #F8F9FA;
            --success: #2A9D8F;
            --shadow: 0 4px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease-in-out;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.9;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--secondary));
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: block;
            width: auto;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        nav a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.08rem;
            transition: var(--transition);
            position: relative;
        }
        nav a:hover {
            color: var(--primary);
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 12px 24px;
            border-radius: 35px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.05rem;
            text-align: center;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
            margin-right: 12px;
        }
        .btn-download:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 57, 70, 0.2);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--dark);
        }
        .btn-login:hover {
            background-color: #e6f4e6;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(241, 250, 238, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: var(--accent);
            cursor: pointer;
            background: none;
            border: none;
        }
        .hero {
            padding: 80px 0;
            text-align: center;
            background: url('https://source.unsplash.com/random/1920x1080/?indian game,casual arcade') no-repeat center center;
            background-size: cover;
            background-blend-mode: overlay;
            background-color: rgba(29, 53, 87, 0.7);
            border-radius: 0 0 40px 40px;
            margin-bottom: 70px;
            color: white;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.3;
        }
        .hero h1 span {
            color: var(--primary);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 40px;
            color: var(--accent);
            text-align: center;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .wiki-header {
            background-color: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            border-left: 8px solid var(--primary);
        }
        .wiki-header .infobox {
            float: right;
            width: 320px;
            background-color: var(--accent);
            border-radius: 15px;
            padding: 25px;
            margin-left: 30px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }
        .infobox h3 {
            color: var(--dark);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
            text-align: center;
        }
        .infobox table {
            width: 100%;
            border-collapse: collapse;
        }
        .infobox td {
            padding: 10px 5px;
            border-bottom: 1px dashed var(--secondary);
            font-size: 0.98rem;
        }
        .infobox td:first-child {
            font-weight: 600;
            color: var(--dark);
            width: 40%;
        }
        .infobox td:last-child {
            color: var(--secondary);
        }
        .infobox tr:last-child td {
            border-bottom: none;
        }
        .wiki-header h2 {
            color: var(--dark);
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent);
        }
        .wiki-header p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 45px;
            margin-bottom: 70px;
        }
        .content-section {
            background-color: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--dark);
            font-size: 2rem;
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary);
            bottom: -3px;
            left: 0;
        }
        h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid var(--primary);
        }
        h4 {
            color: var(--dark);
            font-size: 1.3rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .highlight {
            background-color: rgba(69, 123, 157, 0.08);
            border-left: 5px solid var(--secondary);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 35px 0;
        }
        .highlight strong {
            color: var(--secondary);
            font-size: 1.1rem;
        }
        .fun-fact {
            background-color: rgba(230, 57, 70, 0.08);
            border-left: 5px solid var(--primary);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 35px 0;
        }
        .fun-fact strong {
            color: var(--primary);
            font-size: 1.1rem;
        }
        ul, ol {
            margin: 0 0 25px 35px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        ul li {
            list-style-type: disc;
        }
        ol li {
            list-style-type: decimal;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: var(--accent);
            border-radius: 18px;
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .feature-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        .feature-card p {
            text-align: center;
            font-size: 1rem;
            margin-bottom: 0;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .screenshot {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .screenshot:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .screenshot img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }
        .community-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            text-align: center;
            padding: 25px;
            background-color: var(--accent);
            border-radius: 18px;
            width: 180px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 1rem;
            color: var(--dark);
            font-weight: 500;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--dark);
            border-left: 3px solid var(--primary);
            padding-left: 12px;
        }
        .game-info-list {
            list-style: none;
            margin: 0;
        }
        .game-info-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            margin-bottom: 0;
        }
        .game-info-list li:last-child {
            border-bottom: none;
        }
        .game-info-list .label {
            font-weight: 600;
            color: var(--dark);
        }
        .game-info-list .value {
            color: var(--secondary);
            font-weight: 500;
        }
        .download-widget {
            background: linear-gradient(135deg, var(--dark), var(--secondary));
            color: white;
            text-align: center;
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: var(--shadow);
        }
        .download-widget h3 {
            color: var(--accent);
            border-left-color: var(--primary);
            margin-bottom: 20px;
            padding-left: 12px;
        }
        .download-widget p {
            text-align: center;
            margin-bottom: 25px;
            color: var(--accent);
        }
        .download-btn {
            background-color: var(--primary);
            color: white;
            width: 100%;
            padding: 15px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .download-btn:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3);
        }
        .download-widget .compatibility {
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--accent);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: var(--accent);
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
            font-weight: 500;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .category-list {
            list-style: none;
            margin: 0;
        }
        .category-list li {
            margin-bottom: 12px;
        }
        .category-list a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 1.05rem;
            transition: var(--transition);
            font-weight: 500;
        }
        .category-list a:hover {
            color: var(--primary);
            text-decoration: underline;
            padding-left: 5px;
        }
        .wiki-section {
            margin-bottom: 60px;
        }
        .wiki-section:last-child {
            margin-bottom: 0;
        }
        .quote {
            font-style: italic;
            color: var(--secondary);
            padding: 0 20px;
            border-left: 4px solid var(--accent);
            margin: 30px 0;
            font-size: 1.1rem;
        }
        .reference {
            font-size: 0.9rem;
            color: var(--secondary);
            vertical-align: super;
        }
        .table-of-contents {
            background-color: var(--accent);
            border-radius: 18px;
            padding: 25px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }
        .table-of-contents h3 {
            color: var(--dark);
            margin-top: 0;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .toc-list {
            list-style: none;
            margin: 0;
            columns: 2;
            -webkit-columns: 2;
            -moz-columns: 2;
        }
        .toc-list li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }
        .toc-list li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .toc-list a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        .toc-list a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 40px;
            border-radius: 40px 40px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 45px;
            margin-bottom: 50px;
        }
        .footer-col h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary);
            border-left: none;
            padding-left: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--primary);
            text-decoration: underline;
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(241, 250, 238, 0.1);
            border-radius: 18px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 4px solid var(--primary);
        }
        .recommendation h4 {
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        .recommendation p {
            color: #eee;
            margin-bottom: 0;
        }
        .recommendation a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 500;
            transition: var(--transition);
        }
        .recommendation a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #aaa;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .wiki-header .infobox {
                float: none;
                width: 100%;
                margin-left: 0;
                margin-bottom: 30px;
            }
            .toc-list {
                columns: 1;
                -webkit-columns: 1;
                -moz-columns: 1;
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 25px;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                justify-content: space-between;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 25px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 20px;
                padding: 15px 0;
            }
            nav a {
                font-size: 1.1rem;
            }
            .hamburger {
                display: block;
            }
            .header-buttons {
                display: none;
            }
            .mobile-buttons {
                display: flex;
                gap: 15px;
                margin-top: 20px;
                width: 100%;
                justify-content: center;
            }
            .mobile-buttons .btn {
                flex: 1;
                margin-right: 0;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .stat-card {
                width: 100%;
                max-width: 300px;
            }
            .wiki-header {
                padding: 30px;
            }
            .content-section {
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                margin-bottom: 0;
            }
            .wiki-header {
                padding: 25px;
            }
            .content-section {
                padding: 25px;
            }
            .screenshot-gallery {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .copyright {
                font-size: 0.9rem;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }
        img.loading {
            opacity: 0;
        }
        img.loaded {
            opacity: 1;
        }
        html {
            scroll-behavior: smooth;
        }
        :focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }
