* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial', sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #9b5100 0%, #e69500 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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: 1.9rem;
            font-weight: bold;
            color: #ffdd00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
            font-family: 'Times New Roman', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            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: #ffdd00;
            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: 101;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #9b5100;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #9b5100;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            border-bottom: 3px solid #e69500;
            padding-bottom: 12px;
            line-height: 1.4;
        }
        h3 {
            color: #c17000;
            font-size: 1.7rem;
            margin: 35px 0 18px;
            line-height: 1.4;
        }
        h4 {
            color: #c17000;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 15px;
            background-color: #e69500;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #c17000;
            transform: translateY(-4px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #008000;
        }
        .download-btn:hover {
            background-color: #006600;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 6px solid white;
            transition: transform 0.3s ease;
            position: relative;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            margin-top: 12px;
            color: #666;
            font-size: 1rem;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.2);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            z-index: 10;
            pointer-events: none;
            rotate: -30deg;
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 50px 0;
            gap: 25px;
        }
        .stat-box {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            flex: 1;
            min-width: 260px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-top: 6px solid #e69500;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-8px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #9b5100;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.15rem;
            color: #666;
        }
        .review-container {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container:before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 5rem;
            color: #f1e9d8;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-left: 10px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #e69500;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.4rem;
            margin-right: 20px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .review-stars {
            color: #ffdd00;
            margin: 12px 0;
            font-size: 1.3rem;
        }
        .tips-list {
            margin-left: 35px;
            margin-bottom: 35px;
        }
        .tips-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 12px;
            font-size: 1.05rem;
        }
        .tips-list li:before {
            content: '•';
            color: #e69500;
            font-weight: bold;
            position: absolute;
            left: -15px;
            font-size: 1.5rem;
        }
        .game-type-nav {
            margin: 50px 0;
            padding: 25px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .game-type-nav h3 {
            margin-bottom: 25px;
        }
        .type-links a, .tag-links a {
            display: inline-block;
            margin: 0 12px 12px 0;
            padding: 10px 20px;
            background-color: #f1e9d8;
            color: #9b5100;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #e69500;
            color: white;
            transform: translateY(-3px);
        }
        .tags-container {
            margin: 40px 0;
        }
        footer {
            background-color: #2d2d2d;
            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: #ffdd00;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid #555;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-section p {
            color: #ddd;
            text-align: left;
        }
        .footer-section a {
            color: #ffdd00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid #555;
            color: #aaa;
            font-size: 0.95rem;
        }
        strong {
            color: #9b5100;
        }
        .feature-section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: left;
        }
        .comparison-table th {
            background-color: #f1e9d8;
            color: #9b5100;
            font-weight: bold;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .highlight-box {
            background-color: #fff8e6;
            border-left: 5px solid #e69500;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .festival-event {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
            gap: 20px;
        }
        .festival-icon {
            font-size: 2.5rem;
            min-width: 50px;
            text-align: center;
            margin-top: 5px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 14px 20px;
            }
            .stat-box {
                padding: 20px;
                min-width: 100%;
            }
            .review-container {
                padding: 25px 20px 20px;
            }
            .reviewer {
                flex-direction: column;
                text-align: center;
            }
            .reviewer-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
            .festival-event {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
