* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .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: #fde68a;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        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.05rem;
            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: #fde68a;
            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;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #1e40af;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #fde68a;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #1e3a8a;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #dbeafe;
            position: relative;
        }
        h2:before {
            content: '✧';
            color: #3b82f6;
            margin-right: 10px;
        }
        h3 {
            color: #1e3a8a;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #3b82f6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 10px 15px;
            background-color: #1e40af;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35);
        }
        .btn-download {
            background-color: #059669;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
        }
        .btn-download:hover {
            background-color: #065f46;
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #3b82f6;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .highlight {
            font-weight: bold;
            color: #1e40af;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .review-container:before {
            content: '"';
            font-size: 5rem;
            color: #dbeafe;
            position: absolute;
            top: -10px;
            left: 15px;
            font-family: Georgia, serif;
            opacity: 0.5;
        }
        .reviewer {
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }
        .rating {
            color: #f59e0b;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #dbeafe;
            color: #1e3a8a;
            padding: 8px 18px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #bfdbfe;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 25px 0 40px;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #1e40af;
            font-weight: 500;
            position: relative;
            padding-left: 5px;
        }
        .game-type:before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .game-type:hover:before {
            opacity: 1;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fde68a;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(253, 230, 138, 0.3);
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .tips-box {
            background-color: #eff6ff;
            border-left: 5px solid #3b82f6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #1e40af;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .strategy-box {
            background-color: #f0fdf4;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border: 1px solid #dcfce7;
        }
        .strategy-title {
            font-weight: bold;
            color: #065f46;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1e40af;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span:last-child {
                margin-top: 5px;
                font-style: italic;
            }
        }
