* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #0f3460;
            padding: 18px 20px;
            color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffdd00;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: 1px solid #ffdd00;
            color: #ffdd00;
            padding: 8px 15px;
            cursor: pointer;
            margin-bottom: 12px;
            font-size: 16px;
            border-radius: 5px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #0f3460;
            margin: 25px 0;
            font-size: 36px;
            border-bottom: 3px solid #ffdd00;
            padding-bottom: 12px;
            font-weight: 800;
        }
        h2 {
            color: #0f3460;
            margin: 35px 0 18px;
            font-size: 28px;
            font-weight: 700;
            padding-left: 10px;
            border-left: 4px solid #ffdd00;
        }
        h3 {
            color: #0f3460;
            margin: 25px 0 12px;
            font-size: 24px;
            font-weight: 600;
        }
        h4 {
            color: #2c3e50;
            margin: 20px 0 10px;
            font-size: 20px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
            text-shadow: 0 0 1px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s ease;
            font-size: 17px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #2980b9;
        }
        .btn-login:hover {
            background-color: #1e6091;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #ffdd00;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #0d47a1;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #bbdefb;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            background-color: #fff3e0;
            color: #e65100;
            padding: 6px 15px;
            border-radius: 6px;
            margin: 8px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #ffe0b2;
            transform: translateY(-2px);
        }
        .footer {
            margin-top: 60px;
            padding: 40px 20px;
            background-color: #1a237e;
            color: white;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 30px;
            font-size: 15px;
            color: #cfd8dc;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .tips-box {
            background-color: #fff8e1;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #ffb300;
        }
        .review-box {
            background-color: #f1f8e9;
            border-radius: 8px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid #66bb6a;
        }
        .caution-box {
            background-color: #ffebee;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #ef5350;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 15px;
                padding: 10px 0;
            }
            .nav.show {
                display: flex;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 22px;
            }
            h4 {
                font-size: 19px;
            }
            p {
                font-size: 17px;
                text-align: left;
            }
            .btn {
                padding: 12px 24px;
                font-size: 16px;
                display: block;
                width: 90%;
                margin: 10px auto;
                text-align: center;
            }
            .image-container {
                margin: 20px 0;
            }
            .stats-box {
                padding: 20px 15px;
            }
        }
