* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #fdf4e8;
            color: #2d3436;
            padding: 0;
            margin: 0;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #d32f2f;
            color: #ffffff;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        .nav-links li a {
            color: #fff;
            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: #ffd600;
            border-bottom: 3px solid #ffd600;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 18px 36px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.2rem;
            margin: 18px 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .btn-download {
            background-color: #ff8f00;
            color: #ffffff;
        }
        .btn-download:hover {
            background-color: #e65100;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,143,0,0.4);
        }
        .btn-login {
            background-color: #1976d2;
            color: #ffffff;
        }
        .btn-login:hover {
            background-color: #0d47a1;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(25,118,210,0.4);
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        h1 {
            font-size: 3.2rem;
            color: #d32f2f;
            margin: 70px 0 45px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #ffd600;
            padding-bottom: 30px;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.4rem;
            color: #c2185b;
            margin: 80px 0 40px;
            font-weight: 800;
            position: relative;
            padding-left: 30px;
            line-height: 1.6;
        }
        h2::before {
            content: "⚔️";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-right: 15px;
            font-size: 2.6rem;
        }
        h3 {
            font-size: 1.9rem;
            color: #2e7d32;
            margin: 60px 0 35px;
            font-weight: 700;
            position: relative;
            padding-left: 25px;
            line-height: 1.6;
        }
        h3::before {
            content: "🔥";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-right: 10px;
        }
        h4 {
            font-size: 1.5rem;
            color: #7b1fa2;
            margin: 40px 0 25px;
            font-weight: 600;
            line-height: 1.6;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::after {
            content: "";
            flex: 1;
            height: 2px;
            background-color: #7b1fa2;
            opacity: 0.5;
        }
        p {
            margin: 25px 0;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 10px;
            line-height: 2.0;
        }
        .highlight {
            font-weight: 800;
            color: #d32f2f;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .keyword {
            font-weight: 900;
            color: #c2185b;
            font-size: 1.25rem;
        }
        .desi-note {
            background-color: #fff3e0;
            border-left: 5px solid #ff8f00;
            padding: 20px 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            font-size: 1.15rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .quote {
            background-color: #f3e5f5;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            position: relative;
            font-size: 1.2rem;
            font-style: italic;
            color: #4a148c;
        }
        .quote::before {
            content: '"';
            font-size: 4rem;
            color: #9c27b0;
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: 10px;
        }
        .img-container {
            text-align: center;
            margin: 70px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
            transition: transform 0.5s ease;
            border: 4px solid #ffd600;
        }
        img:hover {
            transform: scale(1.04);
        }
        ul, ol {
            margin: 35px 0 35px 70px;
        }
        li {
            margin: 18px 0;
            font-size: 1.18rem;
            line-height: 1.9;
            position: relative;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -35px;
            top: 2px;
        }
        ol li::before {
            content: counter(list-item) ".";
            font-weight: 700;
            color: #c2185b;
            position: absolute;
            left: -35px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.18);
        }
        th, td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        th {
            background-color: #d32f2f;
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        tr:hover {
            background-color: #fafafa;
            transform: scale(1.009);
            transition: transform 0.3s ease;
        }
        .section {
            background-color: #ffffff;
            border-radius: 30px;
            padding: 60px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.09);
        }
        .accordion {
            display: none;
            background-color: #f8f8f8;
            color: #444;
            cursor: pointer;
            padding: 22px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 1.2rem;
            transition: 0.4s;
            border-radius: 15px;
            margin: 15px 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #d32f2f;
        }
        .accordion:after {
            content: '\002B';
            color: #d32f2f;
            font-weight: bold;
            float: right;
            margin-left: 15px;
        }
        .active:after {
            content: "\2212";
        }
        .panel {
            padding: 0 22px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        footer {
            background-color: #2d3436;
            color: #ffffff;
            padding: 90px 0 60px;
            margin-top: 150px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 80px;
        }
        .footer-section h4 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: #ffd600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            border-bottom: 3px solid #ffd600;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            margin: 18px 0;
            transition: all 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-section ul li a:hover {
            color: #ffd600;
            padding-left: 12px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 45px 0;
        }
        .tag {
            background-color: #424242;
            padding: 14px 28px;
            border-radius: 35px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #fff;
            text-decoration: none;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #ffd600;
            transform: translateY(-4px);
        }
        .tag:hover a {
            color: #2d3436;
            font-weight: 600;
        }
        .recommendation {
            background-color: #c2185b;
            padding: 40px;
            border-radius: 25px;
            margin: 60px 0;
            text-align: center;
            font-size: 1.3rem;
            color: #fff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            line-height: 2.2;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid #424242;
            font-size: 1.1rem;
            color: #bdbdbd;
        }
        .game-genres {
            margin: 50px 0;
            padding: 35px;
            background-color: #fafafa;
            border-radius: 22px;
        }
        .game-genres h4 {
            color: #d32f2f;
            margin-bottom: 30px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .genre-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .genre-nav a {
            background-color: #f0f0f0;
            color: #d32f2f;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .genre-nav a:hover {
            background-color: #d32f2f;
            color: #ffd600;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .section {
                padding: 50px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.5rem;
                margin: 55px 0 35px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.0rem;
                margin: 65px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 50px 0 30px;
            }
            .section {
                padding: 45px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 1.1rem;
                margin: 12px 10px;
            }
            table {
                font-size: 1.05rem;
            }
            th, td {
                padding: 18px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                width: 100%;
                background-color: #d32f2f;
                padding: 50px 35px;
                gap: 35px;
                box-shadow: 0 18px 25px rgba(0,0,0,0.35);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 45px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 55px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 45px 0 25px;
            }
            .section {
                padding: 40px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
                padding: 16px 25px;
            }
            table {
                font-size: 1.0rem;
            }
            th, td {
                padding: 16px;
            }
            ul, ol {
                margin-left: 45px;
            }
            .img-container {
                margin: 50px 0;
            }
            .footer-container {
                gap: 50px;
            }
            .game-genres {
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.0rem;
            }
            h1 {
                font-size: 2.0rem;
            }
            p {
                font-size: 1.1rem;
            }
            .footer-section h4 {
                font-size: 1.4rem;
            }
            .tag {
                padding: 12px 20px;
                font-size: 1.0rem;
            }
            .recommendation {
                padding: 30px;
                font-size: 1.2rem;
            }
            .copyright {
                font-size: 1.05rem;
            }
            ul, ol {
                margin-left: 35px;
            }
        }
