        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', 'Garamond', 'Devangari', sans-serif;
            line-height: 1.8; 
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
            scroll-padding-top: 80px; 
        }
        body {
            background-color: #121212; 
            color: #f8f8f8;
            padding-bottom: 70px;
        }
        header {
            background-color: #8B4513; 
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.8);
        }
        .container {
            width: 92%;
            max-width: 1350px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #FFD700; 
            display: inline-block;
            font-family: 'Georgia', 'Times New Roman', 'Devangari', serif;
        }
        .logo span {
            color: #ffffff;
            font-weight: 500;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
            float: right;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            padding: 11px 16px;
            border-radius: 9px;
            transition: all 0.35s ease;
        }
        .nav-links li a:hover {
            background-color: #FF4500; 
            color: #FFD700; 
        }
        .btn {
            padding: 13px 25px;
            border: none;
            border-radius: 9px;
            cursor: pointer;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s ease;
        }
        .btn-download {
            background-color: #228B22; 
            color: white;
            margin-right: 16px;
        }
        .btn-login {
            background-color: #4169E1; 
            color: white;
        }
        .btn:hover {
            opacity: 0.92;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        }
        .hamburger {
            display: none;
            font-size: 2.3rem;
            cursor: pointer;
            float: right;
            color: #FFD700;
        }
        main {
            padding: 45px 0;
        }
        .page-title {
            font-size: 2.6rem;
            color: #FF4500;
            margin-bottom: 32px;
            border-bottom: 6px solid #FFD700;
            padding-bottom: 18px;
            font-family: 'Georgia', 'Devangari', serif;
        }
        .section {
            background-color: #1E1E1E; 
            padding: 38px;
            border-radius: 14px;
            margin-bottom: 42px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.5);
        }
        .section-title {
            font-size: 2.1rem;
            color: #FF4500;
            margin: 28px 0 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            font-family: 'Georgia', 'Devangari', serif;
        }
        .subsection-title {
            font-size: 1.7rem;
            color: #32CD32; 
            margin: 24px 0 18px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify; 
        }
        strong {
            color: #FF4500;
            font-weight: 800;
        }
        ul {
            margin: 22px 0 22px 42px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.15rem;
        }
        .highlight-box {
            background-color: #2A2A2A;
            border-left: 8px solid #FF4500;
            padding: 24px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .img-container {
            margin: 38px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.6);
            loading: lazy; 
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 38px 0;
        }
        th, td {
            padding: 18px 22px;
            text-align: left;
            border-bottom: 1px solid #444444;
        }
        th {
            background-color: #FF4500;
            color: white;
            font-weight: 700;
        }
        tr:hover {
            background-color: #2A2A2A;
        }
        footer {
            background-color: #8B4513;
            color: white;
            padding: 45px 0;
            margin-top: 55px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 42px;
        }
        .footer-section h3 {
            font-size: 1.6rem;
            margin-bottom: 22px;
            color: #FFD700;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section ul li a {
            color: #f8f8f8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #FFD700;
        }
        .copyright {
            text-align: center;
            padding-top: 32px;
            margin-top: 32px;
            border-top: 1px solid #FF4500;
            font-size: 1.05rem;
            color: #E0E0E0;
        }
        .game-categories {
            margin: 32px 0;
        }
        .category-link, .tag-link {
            display: inline-block;
            padding: 9px 18px;
            margin: 0 9px 9px 0;
            border-radius: 22px;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .category-link {
            background-color: #32CD32;
            color: white;
        }
        .tag-link {
            background-color: #2A2A2A;
            color: #FFD700;
        }
        .category-link:hover, .tag-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 9px rgba(0,0,0,0.25);
        }
        .expert-note {
            background-color: #2A2A2A;
            padding: 28px;
            border-radius: 14px;
            margin: 32px 0;
            border: 1px solid #444444;
        }
        .expert-note h4 {
            color: #FFD700;
            font-size: 1.4rem;
            margin-bottom: 16px;
        }
        .recommendation {
            background-color: #1E1E1E;
            padding: 28px;
            border-radius: 14px;
            margin: 32px 0;
            border: 1px solid #32CD32;
        }
        .recommendation h4 {
            color: #32CD32;
            font-size: 1.4rem;
            margin-bottom: 16px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #121212;
                position: absolute;
                top: 90px;
                left: 0;
                padding: 32px 0;
                gap: 28px;
            }
            .nav-links.active {
                display: flex;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .page-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .subsection-title {
                font-size: 1.5rem;
            }
            p, li {
                font-size: 1.1rem;
            }
        }
        .emoji {
            font-size: 1.5rem;
        }
        br {
            margin-bottom: 11px;
        }
        .section + .section {
            margin-top: 18px;
        }
