* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f0e6d2;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #8b4513;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
        }
        .logo {
            text-align: center;
            font-size: 2.1rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            margin-bottom: 15px;
            font-family: 'Georgia', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            margin: 0 auto 15px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
            transform: scale(1.05);
        }
        nav a.active {
            background-color: #ffd700;
            color: #8b4513;
            font-weight: bold;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 15px;
        }
        h1 {
            font-size: 2.5rem;
            color: #8b4513;
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
            font-family: 'Georgia', serif;
        }
        h2 {
            font-size: 1.9rem;
            color: #8b4513;
            margin: 45px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            font-family: 'Georgia', serif;
        }
        h3 {
            font-size: 1.5rem;
            color: #a0522d;
            margin: 35px 0 18px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #8b4513;
            font-weight: bold;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 15px 15px;
            border-radius: 8px;
            font-size: 1.15rem;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #228b22;
            color: #fff;
        }
        .btn-download:hover {
            background-color: #1a6d1a;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .btn-login {
            background-color: #8b4513;
            color: #fff;
        }
        .btn-login:hover {
            background-color: #6d3811;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 4px solid #fff;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 50px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #f5f0e6;
            border-radius: 10px;
            border-left: 6px solid #8b4513;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #5d5d5d;
        }
        .review-container {
            background-color: #fff;
            border-radius: 12px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #eee;
            padding: 30px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #555;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .review-location {
            color: #888;
            font-size: 0.95rem;
            margin-bottom: 15px;
            font-style: italic;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        ul {
            margin: 0 0 30px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 60px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f5f0e6;
            color: #8b4513;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 12px 15px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid #e0d6c0;
        }
        .tag:hover {
            background-color: #e8d9c0;
            color: #6d3811;
            transform: scale(1.05);
        }
        .game-types {
            margin: 60px 0;
        }
        .game-type {
            display: inline-block;
            color: #8b4513;
            text-decoration: none;
            font-weight: 600;
            margin: 0 18px 15px 0;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #6d3811;
            transform: scale(1.05);
        }
        .tip-box {
            background-color: #fff8e6;
            border-left: 5px solid #ffb300;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .tip-box h4 {
            color: #e65100;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        footer {
            background-color: #2c2c2c;
            color: #fff;
            padding: 60px 15px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section li {
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #555;
            font-size: 1rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 0 auto 20px;
                padding: 15px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            p {
                text-align: left;
                font-size: 1.05rem;
            }
            .image-container {
                margin: 30px 0;
            }
            .review, .stats-box, .review-container {
                padding: 20px;
                margin: 30px 0;
            }
        }
