* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin: 10px 0 20px;
            color: #ffd700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 0 12px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1001;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #1a237e;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 2.5rem;
            line-height: 1.3;
        }
        h2 {
            color: #1a237e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
            font-size: 2rem;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "▶";
            color: #ffd700;
            position: absolute;
            left: -20px;
        }
        h3 {
            color: #3f51b5;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 4px solid #ffd700;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 12px 15px;
            background-color: #2e7d32;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #1b5e20;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #1565c0;
        }
        .btn-login:hover {
            background-color: #0d47a1;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: bold;
            color: #b71c1c;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #3f51b5;
        }
        .stats-box h3 {
            margin-top: 0;
            color: #1a237e;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            font-size: 1.05rem;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .stats-item span:first-child {
            font-weight: 600;
            color: #555;
        }
        .stats-item span:last-child {
            color: #1a237e;
            font-weight: bold;
        }
        .review {
            background-color: white;
            border-left: 5px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            position: relative;
        }
        .review::before {
            content: """;
            font-size: 5rem;
            color: rgba(255,215,0,0.2);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .review p {
            position: relative;
            z-index: 1;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 15px;
            font-weight: 500;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #0d47a1;
            padding: 6px 12px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #bbdefb;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            color: #3f51b5;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding-bottom: 3px;
        }
        .game-type::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #3f51b5;
            transition: width 0.3s ease;
        }
        .game-type:hover::after {
            width: 100%;
        }
        footer {
            background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
            color: white;
            padding: 50px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
            display: inline-block;
        }
        .footer-note {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
        }
        .copyright a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .feature-list {
            margin: 25px 0 35px 20px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 30px;
        }
        .feature-list li::before {
            content: "•";
            color: #ffd700;
            font-size: 1.8rem;
            position: absolute;
            left: 0;
            top: -10px;
        }
        .quote-box {
            background-color: rgba(63, 81, 181, 0.05);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid rgba(63, 81, 181, 0.1);
        }
        .quote-box p {
            font-style: italic;
            color: #1a237e;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #1a237e;
                padding: 20px 0;
                border-radius: 0 0 10px 10px;
                margin-top: 10px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                width: 90%;
                text-align: center;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
                padding-left: 5px;
            }
            h2::before {
                left: -15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 12px 20px;
            }
            .stats-item {
                flex-direction: column;
                margin: 20px 0;
            }
            .stats-item span:last-child {
                margin-top: 5px;
                color: #b71c1c;
            }
            .footer-section {
                margin-bottom: 30px;
            }
        }
