        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #8B4513; 
            --secondary: #FF9933; 
            --accent: #138808; 
            --text: #333333;
            --bg: #F5F5DC; 
            --white: #FFFFFF;
            --shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            padding-bottom: 40px;
        }
        header {
            background-color: var(--primary);
            color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--white);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--white);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        main {
            padding: 30px 0;
        }
        .page-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
        }
        .section-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 30px 0 15px;
            position: relative;
            padding-left: 10px;
            border-left: 4px solid var(--accent);
        }
        .sub-section-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1.05rem;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight {
            background-color: rgba(255, 153, 51, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
        }
        ul {
            margin: 15px 0 15px 30px;
        }
        li {
            margin-bottom: 10px;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            display: block;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: var(--primary);
            color: var(--white);
        }
        tr:hover {
            background-color: rgba(139, 69, 19, 0.05);
        }
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 30px 0;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
            border-bottom: 1px solid var(--secondary);
            padding-bottom: 5px;
        }
        .game-categories a, .tag-cloud a {
            display: inline-block;
            color: var(--white);
            text-decoration: none;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 5px 10px;
            margin: 0 5px 8px 0;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        .game-categories a:hover, .tag-cloud a:hover {
            background-color: var(--secondary);
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                display: none;
            }
            .nav-links.active {
                display: flex;
            }
            .page-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .sub-section-title {
                font-size: 1.2rem;
            }
            p {
                font-size: 1rem;
            }
        }
        .content-block {
            margin-bottom: 25px;
        }
        .btn-container {
            margin: 20px 0;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .recommendation {
            background-color: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 25px 0;
            border-left: 5px solid var(--accent);
        }
        .external-link {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .external-link:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
