* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #0f0e17;
            color: #f8f8f8;
            padding: 0;
            margin: 0;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1625;
            color: #ffd166;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(255,209,102,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 3.0rem;
            font-weight: 900;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
            text-shadow: 0 0 10px rgba(255,209,102,0.4);
        }
        .logo span {
            color: #ef476f;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }
        .nav-links li a {
            color: #f8f8f8;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links li a:hover {
            color: #ffd166;
            border-bottom: 3px solid #ffd166;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffd166;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 20px 40px;
            border-radius: 12px;
            font-weight: 800;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.3rem;
            margin: 15px 12px;
            box-shadow: 0 0 15px rgba(239,71,111,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download {
            background-color: #ef476f;
            color: #ffffff;
        }
        .btn-download:hover {
            background-color: #d63358;
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(239,71,111,0.5);
        }
        .btn-login {
            background-color: #06d6a0;
            color: #0f0e17;
        }
        .btn-login:hover {
            background-color: #05b88c;
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(6,214,160,0.5);
        }
        .btn-container {
            text-align: center;
            margin: 70px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ffd166;
            margin: 80px 0 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #ef476f;
            padding-bottom: 30px;
            line-height: 1.6;
            text-shadow: 0 0 15px rgba(255,209,102,0.3);
        }
        h2 {
            font-size: 2.7rem;
            color: #06d6a0;
            margin: 90px 0 45px;
            font-weight: 800;
            position: relative;
            padding-left: 40px;
            line-height: 1.7;
        }
        h2::before {
            content: "⚔️";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-right: 15px;
            font-size: 3.0rem;
        }
        h3 {
            font-size: 2.2rem;
            color: #ffd166;
            margin: 70px 0 40px;
            font-weight: 700;
            position: relative;
            padding-left: 35px;
            line-height: 1.7;
        }
        h3::before {
            content: "🔥";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-right: 15px;
        }
        h4 {
            font-size: 1.8rem;
            color: #118ab2;
            margin: 50px 0 30px;
            font-weight: 600;
            line-height: 1.7;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4::after {
            content: "";
            flex: 1;
            height: 2px;
            background-color: #118ab2;
            opacity: 0.7;
        }
        p {
            margin: 25px 0;
            font-size: 1.25rem;
            text-align: justify;
            padding: 0 15px;
            line-height: 2.2;
        }
        .highlight {
            font-weight: 800;
            color: #ef476f;
            text-decoration: underline;
            text-underline-offset: 6px;
        }
        .keyword {
            font-weight: 900;
            color: #ffd166;
            font-size: 1.4rem;
        }
        .desi-note {
            background-color: #2d273f;
            border-left: 6px solid #ffd166;
            padding: 25px 30px;
            margin: 45px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 1.25rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .quote {
            background-color: #1e1a2c;
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            position: relative;
            font-size: 1.3rem;
            font-style: italic;
            color: #f8f8f8;
            border-left: 5px solid #06d6a0;
        }
        .quote::before {
            content: '"';
            font-size: 4.5rem;
            color: #06d6a0;
            opacity: 0.2;
            position: absolute;
            top: -25px;
            left: 15px;
        }
        .img-container {
            text-align: center;
            margin: 80px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255,209,102,0.2);
            transition: transform 0.5s ease;
            border: 3px solid #ffd166;
        }
        img:hover {
            transform: scale(1.05);
        }
        ul, ol {
            margin: 40px 0 40px 80px;
        }
        li {
            margin: 25px 0;
            font-size: 1.22rem;
            line-height: 2.0;
            position: relative;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -40px;
            top: 5px;
            font-size: 1.1rem;
        }
        ol li::before {
            content: counter(list-item) ".";
            font-weight: 700;
            color: #06d6a0;
            position: absolute;
            left: -40px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 70px 0;
            background-color: #1e1a2c;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(0,0,0,0.3);
        }
        th, td {
            padding: 25px;
            text-align: left;
            border-bottom: 1px solid #3a3452;
        }
        th {
            background-color: #2d273f;
            color: #ffd166;
            font-weight: 700;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        tr:hover {
            background-color: #3a3452;
            transform: scale(1.005);
            transition: transform 0.3s ease;
        }
        .section {
            background-color: #1a1625;
            border-radius: 25px;
            padding: 70px;
            margin: 70px 0;
            box-shadow: 0 0 30px rgba(0,0,0,0.2);
        }
        .accordion {
            display: none;
            background-color: #2d273f;
            color: #ffd166;
            cursor: pointer;
            padding: 25px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 1.3rem;
            transition: 0.4s;
            border-radius: 15px;
            margin: 15px 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .accordion:after {
            content: '\002B';
            color: #ffd166;
            font-weight: bold;
            float: right;
            margin-left: 15px;
        }
        .active:after {
            content: "\2212";
        }
        .panel {
            padding: 0 30px;
            background-color: #1a1625;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        footer {
            background-color: #0f0e17;
            color: #f8f8f8;
            padding: 100px 0 70px;
            margin-top: 180px;
            border-top: 2px solid #ffd166;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 80px;
            margin-bottom: 90px;
        }
        .footer-section h4 {
            font-size: 1.8rem;
            margin-bottom: 40px;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-section ul li a {
            color: #d1d1d1;
            text-decoration: none;
            display: block;
            margin: 20px 0;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        .footer-section ul li a:hover {
            color: #ffd166;
            padding-left: 15px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 60px 0;
        }
        .tag {
            background-color: #2d273f;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.15rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #f8f8f8;
            text-decoration: none;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #ffd166;
            transform: translateY(-5px);
        }
        .tag:hover a {
            color: #0f0e17;
            font-weight: 600;
        }
        .recommendation {
            background-color: #2d273f;
            padding: 45px;
            border-radius: 20px;
            margin: 70px 0;
            text-align: center;
            font-size: 1.4rem;
            color: #f8f8f8;
            box-shadow: 0 0 30px rgba(0,0,0,0.3);
            line-height: 2.3;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            border-top: 1px solid #3a3452;
            font-size: 1.15rem;
            color: #a0a0a0;
        }
        .game-genres {
            margin: 70px 0;
            padding: 40px;
            background-color: #1e1a2c;
            border-radius: 25px;
        }
        .game-genres h4 {
            color: #ffd166;
            margin-bottom: 35px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .genre-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .genre-nav a {
            background-color: #2d273f;
            color: #f8f8f8;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.15rem;
        }
        .genre-nav a:hover {
            background-color: #ffd166;
            color: #0f0e17;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.5rem;
            }
            h3 {
                font-size: 2.0rem;
            }
            .section {
                padding: 60px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.9rem;
                margin: 70px 0 45px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.3rem;
                margin: 80px 0 40px;
                padding-left: 35px;
            }
            h3 {
                font-size: 1.9rem;
                margin: 60px 0 35px;
            }
            .section {
                padding: 55px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.2rem;
                margin: 12px 10px;
            }
            table {
                font-size: 1.1rem;
            }
            th, td {
                padding: 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: #1a1625;
                padding: 50px 40px;
                gap: 40px;
                box-shadow: 0 20px 30px rgba(0,0,0,0.4);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.6rem;
                margin: 60px 0 40px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 70px 0 35px;
                padding-left: 30px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 50px 0 30px;
            }
            .section {
                padding: 50px;
            }
            .btn {
                width: 100%;
                margin: 15px 0;
                padding: 18px 30px;
            }
            table {
                font-size: 1.05rem;
            }
            th, td {
                padding: 18px;
            }
            ul, ol {
                margin-left: 60px;
            }
            .img-container {
                margin: 65px 0;
            }
            .footer-container {
                gap: 60px;
            }
            .game-genres {
                padding: 35px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            p {
                font-size: 1.15rem;
            }
            .footer-section h4 {
                font-size: 1.6rem;
            }
            .tag {
                padding: 12px 25px;
                font-size: 1.05rem;
            }
            .recommendation {
                padding: 35px;
                font-size: 1.3rem;
            }
            .copyright {
                font-size: 1.1rem;
            }
            ul, ol {
                margin-left: 50px;
            }
        }
