        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
            line-height: 1.7; 
        }
        :root {
            --primary: #FF6700; 
            --secondary: #0056B3; 
            --accent: #FFD700; 
            --text: #2C3E50;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --gray: #E9ECEF;
            --dark-gray: #6C757D;
            --shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        body {
            color: var(--text);
            background-color: var(--light-bg);
            padding-bottom: 60px;
            font-size: 16px; 
        }
        header {
            background-color: var(--secondary);
            color: var(--white);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: var(--shadow);
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 35px;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--white);
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            background-color: #E05A00;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .btn-secondary:hover {
            background-color: #E5C100;
        }
        .button-group {
            margin: 25px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        main {
            padding: 40px 0;
        }
        .page-title {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 25px;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 15px;
            font-weight: 800;
        }
        .section {
            margin-bottom: 50px;
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
        }
        .subsection-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 25px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            hyphens: auto; 
        }
        strong {
            color: var(--secondary);
            font-weight: 700;
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        .highlight-box {
            background-color: #FFF9E6;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-img {
            width: 100%;
            max-width: 850px;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            overflow-x: auto;
            display: block;
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }
        .stats-table th {
            background-color: var(--secondary);
            color: var(--white);
            font-weight: 700;
        }
        .stats-table tr:hover {
            background-color: var(--light-bg);
        }
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 3px solid var(--primary);
            padding-bottom: 8px;
            display: inline-block;
            font-weight: 700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--dark-gray);
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .recommendation {
            background-color: #E6F7FF;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border: 1px solid #B3E0FF;
        }
        .recommendation h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.6rem;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                flex-direction: column;
                padding: 25px;
                display: none;
                box-shadow: 0 8px 10px rgba(0,0,0,0.1);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                margin-left: 0;
            }
            .page-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .button-group {
                flex-direction: column;
                gap: 15px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .section {
                padding: 20px;
            }
            .game-img {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.6rem;
            }
            .page-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .subsection-title {
                font-size: 1.3rem;
            }
            body {
                font-size: 15px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-15 {
            margin-bottom: 15px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: var(--gray);
            color: var(--text);
            border-radius: 25px;
            margin: 8px 5px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }
        .tags-container {
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        html {
            scroll-behavior: smooth;
        }
