* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #b22222;
            color: #ffd700;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: 'Georgia', serif;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 15px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #ffd700;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 32px;
            cursor: pointer;
            padding: 5px 10px;
        }
        h1 {
            color: #b22222;
            font-size: 32px;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 4px solid #ffd700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #b22222;
            font-size: 26px;
            margin: 35px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            color: #8b0000;
            font-size: 22px;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px dotted #ffd700;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #b22222;
            text-decoration: underline;
            text-decoration-style: dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #b22222;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 12px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            font-size: 16px;
            border: 2px solid #ffd700;
        }
        .btn:hover {
            background-color: #8b0000;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            color: #ffd700;
        }
        .btn-download {
            background-color: #228b22;
        }
        .btn-download:hover {
            background-color: #006400;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 3px solid #ffd700;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border-left: 6px solid #228b22;
        }
        .stats-box h3 {
            color: #228b22;
            margin-top: 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff0c8;
            color: #b22222;
            padding: 8px 16px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 1px solid #ffd700;
        }
        .tag:hover {
            background-color: #ffe488;
            transform: scale(1.08);
        }
        .game-type {
            display: inline-block;
            margin: 12px 15px 12px 0;
            text-decoration: none;
            color: #b22222;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            font-size: 16px;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .game-type:hover {
            color: #8b0000;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 30px;
            font-size: 15px;
            color: #d0d0d0;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #ffd700;
        }
        .reviewer {
            font-weight: bold;
            color: #b22222;
            margin-bottom: 5px;
            display: block;
        }
        .stars {
            color: #ffd700;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #b22222;
                padding: 25px;
                box-shadow: 0 15px 15px rgba(0,0,0,0.3);
            }
            .nav-links li {
                margin: 15px 0;
                border-bottom: 1px solid rgba(255,255,255,0.15);
                padding-bottom: 10px;
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 28px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 18px;
            }
            h3 {
                font-size: 20px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
                line-height: 1.7;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 15px auto;
                width: 90%;
                padding: 14px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
