* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f0e8;
            color: #2c2417;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #5a4b36;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #e6b85c;
            font-size: 1.8rem;
            font-weight: 900;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: #e6b85c;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #5a4b36;
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #e6b85c;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #5a4b36;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #e6b85c;
        }
        h3 {
            color: #5a4b36;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            font-weight: 800;
            position: relative;
            padding-bottom: 8px;
        }
        h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #e6b85c;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #5a4b36;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: #e6b85c;
        }
        strong {
            color: #5a4b36;
        }
        .btn-group {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        .download-btn {
            background-color: #3d6b41;
            color: white;
        }
        .login-btn {
            background-color: #4a5b8c;
            color: white;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            border: 3px solid #ffffff;
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f9f3e6;
            border-radius: 10px;
            border: 2px solid #e6b85c;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #5a4b36;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #6b593e;
        }
        .reviews-section {
            margin: 45px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #e6b85c;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateX(5px);
        }
        .reviewer {
            font-weight: 800;
            color: #5a4b36;
            font-size: 1.2rem;
        }
        .rating {
            color: #e6b85c;
            font-size: 1.5rem;
            margin: 8px 0;
        }
        .tags-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f9f3e6;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            color: #5a4b36;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #5a4b36;
            color: white;
            transform: translateY(-3px);
        }
        .game-types-nav {
            margin: 30px 0 50px;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #4a5b8c;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            color: #5a4b36;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        ul {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.15rem;
        }
        footer {
            background-color: #2c2417;
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #e6b85c;
            margin-bottom: 25px;
            border-bottom: 2px solid #e6b85c;
            padding-bottom: 10px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid #5a4b36;
            margin-top: 40px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #5a4b36;
                padding: 30px 20px;
                gap: 20px;
                border-top: 3px solid #e6b85c;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            li {
                font-size: 1.05rem;
            }
            .btn-group {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
