* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf8f0;
            color: #2d2415;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background-color: #9b5929;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: #ffdf8c;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdf8c;
            border-bottom: 2px solid #ffdf8c;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1250px;
            margin: 40px auto;
            padding: 0 25px;
        }
        h1 {
            color: #9b5929;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.3;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #824c21;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #d4b483;
        }
        h3 {
            color: #704218;
            font-size: 1.6rem;
            margin: 35px 0 18px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 600;
            color: #9b5929;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.4s ease;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2e8b57;
            color: #fff;
        }
        .login-btn {
            background-color: #1e88e5;
            color: #fff;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.18);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff8e6;
            border-radius: 10px;
            border: 1px solid #f0e0c0;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #9b5929;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #5a3a18;
        }
        .review-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border-left: 5px solid #d4b483;
        }
        .reviewer {
            font-style: italic;
            color: #664422;
            margin-top: 15px;
        }
        .regional-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .regional-table th, .regional-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0e0c0;
        }
        .regional-table th {
            background-color: #fff8e6;
            color: #9b5929;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .regional-table tr:last-child td {
            border-bottom: none;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #d4b483;
            color: #2d2415;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #9b5929;
            color: #fff;
        }
        .game-types {
            margin: 50px 0;
        }
        .type-link {
            color: #1e88e5;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .type-link:hover {
            color: #9b5929;
            text-decoration: underline;
        }
        footer {
            background-color: #2d2415;
            color: #e0d8c8;
            padding: 50px 25px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffdf8c;
            margin-bottom: 20px;
            font-size: 1.5rem;
            border-bottom: 2px solid #5a4a30;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0d8c8;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffdf8c;
            margin-left: 5px;
        }
        .recommendation {
            background-color: #3a2e1d;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #5a4a30;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #c0b8a8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #9b5929;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 5px 8px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn-container {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                padding: 15px;
                font-size: 1.1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 1.9rem;
            }
            .regional-table th, .regional-table td {
                padding: 12px;
                font-size: 0.95rem;
            }
            .tag {
                padding: 8px 15px;
                font-size: 0.95rem;
            }
        }
