        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            color: #2d3436;
            background-color: #faf6ed;
            padding-bottom: 120px;
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: #1a535c;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
            text-decoration: underline;
        }
        .container {
            width: 96%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            color: #1a535c;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 800;
            border-bottom: 5px solid #ff6b6b;
            padding-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.12);
        }
        h2 {
            font-size: 2.1rem;
            color: #ff6b6b;
            margin: 80px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
            border-left: 6px solid #1a535c;
            padding-left: 22px;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff8c42;
            margin: 55px 0 30px;
            font-weight: 600;
            padding-bottom: 12px;
            border-bottom: 2px dotted #ff8c42;
        }
        h4 {
            font-size: 1.4rem;
            color: #6b48ff;
            margin: 45px 0 22px;
            font-weight: 600;
        }
        .nav-container {
            background-color: #1a535c;
            color: white;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 18px;
            text-align: center;
            width: 100%;
        }
        .logo span {
            color: #ff6b6b;
            font-style: italic;
            font-size: 2.4rem;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }
        .nav-links a {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 12px 18px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd166;
            background-color: rgba(255,255,255,0.18);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2.2rem;
            cursor: pointer;
            position: absolute;
            top: 28px;
            right: 25px;
        }
        .btn {
            display: inline-block;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.3rem;
            text-align: center;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            margin: 25px 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .btn-download {
            background-color: #ff6b6b;
            color: white;
        }
        .btn-download:hover {
            background-color: #e55353;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            color: white;
            text-decoration: none;
        }
        .btn-login {
            background-color: #ffd166;
            color: #1a535c;
        }
        .btn-login:hover {
            background-color: #ffbe0b;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            color: #1a535c;
            text-decoration: none;
        }
        .btn-container {
            text-align: center;
            margin: 80px 0;
        }
        .game-img {
            width: 100%;
            max-width: 1100px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            margin: 50px auto;
            display: block;
            border: 5px solid #ffd166;
        }
        p {
            margin: 25px 0;
            font-size: 1.15rem;
            text-align: justify;
            color: #34495e;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #1a535c;
            font-size: 1.25rem;
        }
        .desi-note {
            background-color: #f0f8fb;
            border-left: 7px solid #1a535c;
            padding: 25px;
            margin: 45px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .desi-note strong {
            color: #ff6b6b;
            font-size: 1.2rem;
        }
        ul, ol {
            margin: 35px 0 35px 45px;
        }
        li {
            margin: 18px 0;
            font-size: 1.15rem;
            color: #34495e;
            line-height: 1.9;
        }
        ul li {
            list-style-type: disc;
        }
        ol li {
            list-style-type: decimal;
        }
        ul ul, ol ol, ul ol, ol ul {
            margin: 18px 0 18px 35px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .stats-table th {
            background-color: #1a535c;
            color: white;
            font-weight: 600;
            font-size: 1.15rem;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .game-categories {
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            margin: 90px 0;
        }
        .category-title {
            font-size: 1.5rem;
            color: #1a535c;
            margin-bottom: 35px;
            font-weight: 600;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 50px 0;
        }
        .tag {
            padding: 12px 25px;
            background-color: #f5f5f5;
            border-radius: 30px;
            font-size: 1.05rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .tag a {
            color: #ff6b6b;
            font-weight: 600;
        }
        .tag a:hover {
            color: #e55353;
            text-decoration: none;
        }
        .recommendation {
            background-color: #fff5e6;
            padding: 35px;
            border-radius: 20px;
            margin: 90px 0;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a535c;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            line-height: 2.2;
        }
        .copyright {
            text-align: center;
            padding: 35px;
            background-color: #1a535c;
            color: white;
            margin-top: 120px;
            border-radius: 20px 20px 0 0;
            font-size: 1.1rem;
        }
        .copyright a {
            color: #ffd166;
            margin: 0 12px;
            font-weight: 500;
        }
        .copyright a:hover {
            color: #ffbe0b;
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
                margin: 55px 0 35px;
                padding-bottom: 22px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 70px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 50px 0 25px;
            }
            h4 {
                font-size: 1.3rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #2a6b73;
                padding: 35px;
                gap: 25px;
                border-top: 3px solid rgba(255,255,255,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            .logo {
                font-size: 2rem;
                margin-bottom: 0;
                text-align: left;
                width: auto;
            }
            .logo span {
                font-size: 2.2rem;
            }
            p, li {
                font-size: 1.1rem;
            }
            .btn {
                padding: 16px 35px;
                font-size: 1.2rem;
                width: 100%;
                margin: 15px 0;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 1.05rem;
            }
            .game-categories {
                padding: 35px;
            }
            .tags {
                gap: 15px;
            }
            .tag {
                padding: 10px 22px;
                font-size: 1rem;
            }
            .recommendation {
                padding: 30px;
                font-size: 1.2rem;
            }
            .copyright {
                padding: 30px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
                margin: 50px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 60px 0 25px;
                padding-left: 18px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 45px 0 22px;
            }
            .nav-content {
                flex-wrap: wrap;
            }
            .btn-container {
                margin: 60px 0;
            }
            .game-img {
                margin: 40px auto;
                border-width: 4px;
            }
            ul, ol {
                margin: 30px 0 30px 35px;
            }
            .desi-note {
                padding: 22px;
                margin: 35px 0;
            }
            .game-categories {
                padding: 30px;
            }
        }
