        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', sans-serif;
            line-height: 1.7; 
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
            scroll-padding-top: 80px; 
        }
        body {
            background-color: #f0f4f9; 
            color: #2d3748;
            padding-bottom: 50px;
        }
        header {
            background-color: #8b5a2b; 
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .container {
            width: 92%;
            max-width: 1250px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #ffd700; 
            display: inline-block;
            font-family: 'Georgia', serif;
        }
        .logo span {
            color: #ffffff;
            font-weight: 400;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
            float: right;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            padding: 9px 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: #a06c3b;
            color: #ffd700;
        }
        .btn {
            padding: 11px 22px;
            border: none;
            border-radius: 7px;
            cursor: pointer;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s ease;
        }
        .btn-download {
            background-color: #2e8b57; 
            color: white;
            margin-right: 12px;
        }
        .btn-login {
            background-color: #4682b4; 
            color: white;
        }
        .btn:hover {
            opacity: 0.92;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            float: right;
            color: #ffd700;
        }
        main {
            padding: 35px 0;
        }
        .page-title {
            font-size: 2.4rem;
            color: #8b5a2b;
            margin-bottom: 25px;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 12px;
            font-family: 'Georgia', serif;
        }
        .section {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 35px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        .section-title {
            font-size: 1.9rem;
            color: #8b5a2b;
            margin: 22px 0 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Georgia', serif;
        }
        .subsection-title {
            font-size: 1.5rem;
            color: #a06c3b;
            margin: 20px 0 14px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.08rem;
            text-align: justify; 
        }
        strong {
            color: #8b5a2b;
            font-weight: 700;
        }
        ul {
            margin: 18px 0 18px 35px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.08rem;
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 6px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.12);
            loading: lazy; 
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        th, td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background-color: #8b5a2b;
            color: white;
            font-weight: 700;
        }
        tr:hover {
            background-color: #f8f9fa;
        }
        footer {
            background-color: #8b5a2b;
            color: white;
            padding: 35px 0;
            margin-top: 45px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            color: #ffd700;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section ul li a {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid #a06c3b;
            font-size: 0.95rem;
            color: #e6e6e6;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #94683c;
                position: absolute;
                top: 80px;
                left: 0;
                padding: 25px 0;
                gap: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .page-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .subsection-title {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1.05rem;
            }
        }
        .emoji {
            font-size: 1.3rem;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #8b5a2b;
            padding: 6px 12px;
            border-radius: 25px;
            margin: 6px 6px 6px 0;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #d1e7dd;
        }
        .game-type {
            display: inline-block;
            background-color: #fff3cd;
            color: #856404;
            padding: 7px 14px;
            border-radius: 6px;
            margin: 6px 6px 6px 0;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .game-type:hover {
            background-color: #ffeeba;
        }
        .expert-note {
            background-color: #eaf6fa;
            padding: 22px;
            border-radius: 10px;
            margin: 28px 0;
            border: 1px solid #bee5eb;
        }
        .expert-note h4 {
            color: #0c5460;
            font-size: 1.25rem;
            margin-bottom: 12px;
        }
        .recommendation {
            background-color: #f5fafe;
            padding: 22px;
            border-radius: 10px;
            margin: 28px 0;
            border: 1px solid #c3e6cb;
        }
        .recommendation h4 {
            color: #28a745;
            font-size: 1.25rem;
            margin-bottom: 12px;
        }
        br {
            margin-bottom: 8px;
        }
        .section + .section {
            margin-top: 10px;
        }
