* {
            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;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #e63946, #d62828);
            color: white;
            padding: 18px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 10;
        }
        .mobile-nav {
            display: none;
            padding: 25px;
            background-color: #e63946;
            position: relative;
            z-index: 5;
        }
        .mobile-nav.active {
            display: block;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav ul li {
            margin: 15px 0;
        }
        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .mobile-nav ul li a:hover {
            color: #ffd700;
        }
        h1 {
            font-size: 2.8rem;
            color: #e63946;
            margin: 40px 0 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffd700;
        }
        h2 {
            font-size: 2.2rem;
            color: #e63946;
            margin: 50px 0 25px;
            padding-left: 12px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            font-size: 1.6rem;
            color: #2d2d2d;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "►";
            color: #e63946;
            margin-right: 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: underline dotted #e63946;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #1d3557;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #14213d;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #457b9d;
        }
        .btn-download:hover {
            background-color: #1d3557;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-top: 5px solid #e63946;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .stats-item span:first-child {
            font-weight: 500;
            color: #555;
        }
        .stats-item span:last-child {
            font-weight: bold;
            color: #e63946;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: #f1faee;
            padding: 7px 20px;
            border-radius: 30px;
            text-decoration: none;
            color: #1d3557;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .tag:hover {
            background-color: #e63946;
            color: white;
            border-color: #e63946;
        }
        .game-types {
            margin: 35px 0;
        }
        .game-type-link {
            color: #1d3557;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #e63946;
            text-decoration: underline;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: #ffd700;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #457b9d;
            font-size: 0.95rem;
            color: #f1faee;
        }
        .emoji {
            margin-right: 8px;
        }
        .tips-box {
            background-color: #f1faee;
            border-left: 4px solid #457b9d;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box p {
            margin-bottom: 15px;
        }
        .tips-box p:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .header-content nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.7;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                margin: 10px 10px 10px 0;
                width: 100%;
                margin: 10px 0;
            }
            .image-container {
                margin: 30px 0;
            }
            .stats-box {
                padding: 20px;
                margin: 30px 0;
            }
            .footer-content {
                gap: 30px;
            }
            .footer-section {
                min-width: 100%;
            }
        }
