* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nirmala UI', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f0f7ff;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #2980b9;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            margin-bottom: 10px;
            font-family: 'Mangal', sans-serif;
        }
        .nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav a {
            color: #f1f2f6;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background-color: #3498db;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #2980b9;
            font-size: 2.5rem;
            margin: 30px 0;
            text-align: center;
            border-bottom: 3px solid #ffeaa7;
            padding-bottom: 10px;
        }
        h2 {
            color: #273c75;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #6c5ce7;
        }
        h3 {
            color: #3949ab;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "📚";
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #6c5ce7;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #5549b8;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #00b894;
        }
        .btn-login:hover {
            background-color: #00967d;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 2px solid #dfe6e9;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #0984e3;
        }
        .stats-box p {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .stats-box p:last-child {
            border-bottom: none;
        }
        .reviews-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 30px 0;
        }
        @media (min-width: 768px) {
            .reviews-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .review-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-top: 4px solid #74b9ff;
        }
        .reviewer {
            font-weight: bold;
            color: #2d3436;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .reviewer::before {
            content: "👤";
        }
        .rating {
            color: #e67e22;
            margin: 5px 0;
            letter-spacing: 2px;
        }
        .game-type-nav, .tag-nav {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-type-nav a, .tag-nav a {
            display: inline-block;
            padding: 8px 15px;
            background-color: #e8f4f8;
            color: #2980b9;
            text-decoration: none;
            border-radius: 20px;
            transition: all 0.3s;
            border: 1px solid #b2d5e6;
        }
        .game-type-nav a:hover, .tag-nav a:hover {
            background-color: #d6eafe;
            transform: scale(1.05);
        }
        .footer {
            background-color: #2980b9;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 15px;
            text-align: left;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #3498db;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .tips-box {
            background-color: #e8f4fd;
            border-radius: 8px;
            padding: 15px;
            margin: 25px 0;
            border-left: 4px solid #0984e3;
        }
        .tips-box h4 {
            color: #273c75;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .event-header {
            background-color: #74b9ff;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 1.3rem;
        }
        .event-body {
            padding: 20px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
                margin-top: 15px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
        }
