* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffdd00;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: 'Times New Roman', serif;
        }
        .container {
            width: 92%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        h1 {
            color: #1a2a6c;
            font-size: 2.8rem;
            margin: 40px 0 25px;
            text-align: center;
            font-family: 'Georgia', serif;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #b21f1f;
            font-size: 2.1rem;
            margin: 50px 0 20px;
            border-bottom: 3px solid #fdbb2d;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #1a2a6c;
            font-size: 1.6rem;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #fdbb2d;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 15px 25px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            font-size: 1.05rem;
        }
        .btn-download {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        }
        .btn-login {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .btn:active {
            transform: translateY(-1px);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 10px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #b21f1f;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .tag {
            display: inline-block;
            background-color: #f0f0f0;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            border: 1px solid #e0e0e0;
        }
        .tag:hover {
            background-color: #e8e8e8;
            transform: scale(1.05);
        }
        .tag a {
            color: #1a2a6c;
            text-decoration: none;
        }
        .game-type {
            margin: 12px 0;
            padding: 8px 12px;
            background-color: #f8f8f8;
            border-radius: 6px;
            display: inline-block;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .game-type a {
            color: #b21f1f;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type:hover {
            background-color: #f0f0f0;
        }
        footer {
            background-color: #1a2a6c;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 25px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fdbb2d;
            border-bottom: 2px solid #fdbb2d;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #fdbb2d;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #334a8c;
            font-size: 0.95rem;
            color: #b0b0c0;
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #fdbb2d;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .recommendation h3 {
            color: #b21f1f;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #fdbb2d;
            padding-left: 15px;
            margin: 25px 0;
            color: #444;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a2a6c;
                padding: 20px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                margin-left: 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 12px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-section {
                padding-right: 0;
            }
        }
