* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FFD700;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8B4513;
            font-size: 34px;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #FFD700;
        }
        h2 {
            color: #CD853F;
            font-size: 26px;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FFD700;
            position: relative;
            padding-left: 10px;
        }
        h2:before {
            content: '✯';
            position: absolute;
            left: -20px;
            color: #CD853F;
        }
        h3 {
            color: #8B4513;
            font-size: 22px;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #FFD700;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8B4513;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            margin: 0 12px 15px;
            background-color: #228B22;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #B22222;
        }
        .download-btn:hover {
            background-color: #8B0000;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 45px 0;
            gap: 25px;
        }
        .stat-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #FFD700;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #CD853F;
            margin-bottom: 10px;
        }
        .stat-text {
            font-size: 16px;
            color: #555;
        }
        .review-container {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #FFD700;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #F5DEB3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #8B4513;
            font-size: 20px;
        }
        .review-stars {
            color: #FFD700;
            margin: 12px 0;
            letter-spacing: 2px;
            font-size: 18px;
        }
        .tips-list {
            margin-left: 40px;
            margin-bottom: 30px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 17px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            position: absolute;
            left: -20px;
            color: #CD853F;
            font-size: 24px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #CD853F;
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .tag:hover {
            background-color: #8B4513;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .game-type-link {
            color: #8B4513;
            text-decoration: none;
            margin-right: 25px;
            font-size: 17px;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 3px;
        }
        .game-type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #8B4513;
            transition: width 0.3s ease;
        }
        .game-type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #3E2723;
            color: white;
            padding: 50px 0 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
            display: inline-block;
            vertical-align: top;
            width: 30%;
            padding-right: 30px;
        }
        .footer-section h3 {
            color: #FFD700;
            border-left-color: #FFD700;
            margin-bottom: 20px;
        }
        .footer-section p {
            color: #E0E0E0;
            font-size: 16px;
        }
        .footer-section a {
            color: #FFD700 !important;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: white !important;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #795548;
            margin-top: 40px;
            font-size: 15px;
            color: #BDBDBD;
        }
        .drop-cap:first-letter {
            font-size: 3.5em;
            line-height: 0.8;
            float: left;
            margin-right: 10px;
            color: #8B4513;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #CD853F;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 24px;
                margin: 35px 0 15px;
                padding-left: 5px;
            }
            h2:before {
                left: -15px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 15px;
            }
            .footer-section {
                width: 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }
            .stats-container {
                gap: 20px;
            }
            .stat-box {
                padding: 20px;
            }
            .review-container {
                padding: 20px;
            }
        }
