* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #9b2226;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-menu {
            display: flex;
            gap: 25px;
        }
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-menu a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            padding: 30px 0;
        }
        h1 {
            color: #9b2226;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #7f1d1d;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
        }
        h3 {
            color: #4b0000;
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #9b2226;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            margin: 35px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 12px 28px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-block;
            text-align: center;
            min-width: 180px;
        }
        .download-btn {
            background-color: #1e88e5;
            color: white;
            box-shadow: 0 4px 0 #0d47a1;
        }
        .download-btn:hover {
            background-color: #1976d2;
            transform: translateY(-2px);
            box-shadow: 0 6px 0 #0d47a1;
        }
        .login-btn {
            background-color: #388e3c;
            color: white;
            box-shadow: 0 4px 0 #1b5e20;
        }
        .login-btn:hover {
            background-color: #2e7d32;
            transform: translateY(-2px);
            box-shadow: 0 6px 0 #1b5e20;
        }
        .image-section {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #9b2226;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0;
        }
        .tag {
            background-color: #fff3c4;
            color: #7f1d1d;
            padding: 6px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #9b2226;
            color: white;
        }
        .game-type-links {
            margin: 30px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .game-type-links a {
            color: #1e88e5;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type-links a:hover {
            color: #9b2226;
            text-decoration: underline;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: bold;
            color: #7f1d1d;
            margin-bottom: 5px;
        }
        .review-location {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
        }
        .footer-section a {
            color: #f0f0f0;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffd700;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,215,0,0.1);
            border-left: 4px solid #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #9b2226;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-menu.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
