        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8b5a2b 0%, #d2b48c 100%);
            padding: 15px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            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;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b5a2b;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #d2b48c;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b5a2b;
            font-size: 1.8rem;
            margin: 45px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #d2b48c;
        }
        h3 {
            color: #a0522d;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #d2b48c;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            color: #444;
        }
        strong {
            color: #8b5a2b;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 12px 15px;
            background-color: #8b5a2b;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            font-size: 1.05rem;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #a0522d;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #2e8b57;
        }
        .btn-download:hover {
            background-color: #3cb371;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-left: 6px solid #d2b48c;
        }
        .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: #f5f0e6;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            border-top: 4px solid #d2b48c;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .reviewer {
            font-weight: bold;
            color: #8b5a2b;
            font-size: 1.05rem;
        }
        .rating {
            color: #f9c74f;
            font-weight: bold;
            font-size: 1.1rem;
            text-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }
        .tips-list {
            margin-left: 35px;
            margin-bottom: 25px;
        }
        .tips-list li {
            margin-bottom: 18px;
            color: #444;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            padding: 9px 18px;
            background-color: #f5f0e6;
            color: #8b5a2b;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #8b5a2b;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
            padding-top: 20px;
            border-top: 1px solid #e6d9c6;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            color: #8b5a2b;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
            padding-left: 5px;
        }
        .game-type:before {
            content: '•';
            position: absolute;
            left: -15px;
            color: #d2b48c;
        }
        .game-type:hover {
            color: #a0522d;
            text-decoration: underline;
        }
        footer {
            background-color: #2c2c2c;
            color: white;
            padding: 50px 0 25px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 35px;
            display: inline-block;
            width: 100%;
            vertical-align: top;
        }
        @media (min-width: 768px) {
            .footer-section {
                width: 48%;
                padding-right: 2%;
            }
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            display: inline-block;
        }
        .footer-section p, .footer-section ul li {
            color: #f0f0f0;
            margin-bottom: 12px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid #4a4a4a;
            font-size: 0.95rem;
            color: #bbbbbb;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
            }
            nav {
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #8b5a2b;
            color: white;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
        html {
            scroll-behavior: smooth;
        }
