* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f5f3e6;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8b5a2b 0%, #5d4037 100%);
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffffff;
            margin-left: 8px;
            font-size: 1.2rem;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        nav ul li a:hover {
            color: #ffeb3b;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffeb3b;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #5d4037;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #d35400;
            position: relative;
        }
        h1:after {
            content: '✨';
            position: absolute;
            right: 20px;
            bottom: 10px;
        }
        h2 {
            color: #5d4037;
            font-size: 1.8rem;
            margin: 45px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #d35400;
            position: relative;
        }
        h2:before {
            content: '•';
            color: #d35400;
            font-size: 2rem;
            position: absolute;
            left: -10px;
            top: -10px;
        }
        h3 {
            color: #8b5a2b;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px dotted #8b5a2b;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
            text-shadow: 0.5px 0.5px 0px rgba(0,0,0,0.1);
        }
        .button-container {
            display: flex;
            gap: 25px;
            margin: 45px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn span {
            margin-right: 8px;
        }
        .download-btn {
            background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
            color: white;
            border: 2px solid #2e7d32;
        }
        .login-btn {
            background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
            color: white;
            border: 2px solid #1565c0;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .image-container:hover .game-image {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-top: 5px solid #8b5a2b;
        }
        .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 15px;
            background-color: #f9f5ea;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.15);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #d35400;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #8b5a2b;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #2e7d32;
        }
        .review {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 8px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        .reviewer:before {
            content: '👤';
            margin-right: 10px;
        }
        .rating {
            color: #ffb300;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }
        .tips-list {
            margin: 25px 0 35px 50px;
        }
        .tips-list li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
        }
        .tips-list li:before {
            content: '→';
            color: #d35400;
            position: absolute;
            left: -25px;
            font-weight: bold;
        }
        .tag-container {
            margin: 45px 0;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tag {
            display: inline-block;
            background-color: #f1e9d2;
            color: #8b5a2b;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #8b5a2b;
            color: white;
            transform: translateY(-3px);
            border-color: #8b5a2b;
        }
        .game-type-nav {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type {
            color: #8b5a2b;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #d35400;
            border-bottom-color: #d35400;
        }
        footer {
            background: linear-gradient(135deg, #2d2417 0%, #1a1409 100%);
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d35400;
            display: inline-block;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .footer-col {
            margin-bottom: 30px;
        }
        .footer-col a {
            color: #e2d9c2;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        .footer-col a:hover {
            color: #ffeb3b;
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #ffeb3b;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #c4b89c;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 20px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 12px 0;
            }
            nav ul li a {
                font-size: 1.1rem;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
                padding: 0 15px 15px;
            }
            h1:after {
                display: none;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .button-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                padding: 12px 20px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
