* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f0f7ff;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.7rem;
            font-weight: bold;
            color: white;
            text-align: center;
            padding: 12px 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 9px 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        nav 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.9rem;
            cursor: pointer;
            position: absolute;
            top: 22px;
            right: 20px;
            z-index: 1001;
        }
        .container {
            max-width: 1050px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1, h2, h3 {
            color: #0984e3;
            margin-bottom: 20px;
            line-height: 1.5;
            font-weight: bold;
        }
        h1 {
            font-size: 2.3rem;
            text-align: center;
            margin: 35px 0 45px;
            padding-bottom: 12px;
            border-bottom: 3px solid #74b9ff;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 45px;
            padding-left: 12px;
            border-left: 5px solid #74b9ff;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            color: #0652DD;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0984e3;
            text-decoration: none;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #0984e3;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 0 12px 18px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.18);
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #0652DD;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.25);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
            border: 1px solid #b2bec3;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 22px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 4px solid #74b9ff;
        }
        .stats-box p {
            font-size: 1.15rem;
            margin-bottom: 14px;
        }
        .tag-container {
            margin: 40px 0;
            overflow: hidden;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4fd;
            color: #0984e3;
            padding: 7px 16px;
            border-radius: 20px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #dfe6e9;
            transform: scale(1.05);
        }
        .game-type {
            margin: 35px 0;
            padding: 18px;
            background-color: #e8f4fd;
            border-radius: 7px;
        }
        .game-type a {
            color: #0984e3;
            text-decoration: none;
            font-weight: 600;
            margin-right: 18px;
            transition: color 0.2s;
        }
        .game-type a:hover {
            color: #0652DD;
            text-decoration: underline;
        }
        footer {
            background-color: #2d3436;
            color: #f0f0f0;
            padding: 45px 20px 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1050px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
            padding-bottom: 18px;
            border-bottom: 1px solid #444;
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h3 {
            color: #74b9ff;
            margin-bottom: 18px;
            font-size: 1.4rem;
        }
        .footer-section p {
            color: #e0e0e0;
            margin-bottom: 12px;
            text-align: left;
        }
        .footer-section a {
            color: #74b9ff;
            text-decoration: none;
        }
        .footer-section a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #b0b0b0;
            border-top: 1px solid #444;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                text-align: center;
                background-color: #0984e3;
                border-radius: 8px;
                padding: 18px;
                margin-top: 12px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
                margin: 30px 0;
            }
            h2 {
                font-size: 1.6rem;
                margin-top: 35px;
            }
            h3 {
                font-size: 1.35rem;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 92%;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .logo {
                font-size: 1.5rem;
                text-align: left;
                padding-left: 15px;
            }
        }
