* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #ff6b35;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 22px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #c0392b;
            margin: 35px 0 25px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e74c3c;
            margin: 30px 0 18px;
            font-size: 2.2rem;
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 8px;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #ff6b35;
            bottom: -3px;
            left: 0;
        }
        h3 {
            color: #e67e22;
            margin: 25px 0 15px;
            font-size: 1.7rem;
            padding-left: 10px;
            border-left: 4px solid #e67e22;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #333333;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 0;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #3498db;
            margin-left: 15px;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 3px solid #ffffff;
        }
        .game-stats {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff0e0;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: bold;
            color: #c0392b;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555555;
        }
        .guide-section, .events-section, .community-section {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .faq-item {
            margin: 20px 0;
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 15px;
        }
        .faq-question {
            font-weight: bold;
            color: #e74c3c;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            margin-top: 10px;
            display: none;
        }
        .faq-answer.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 25px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
            color: #ffd700;
        }
        .game-types a, .tags a {
            color: #ecf0f1;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 1rem;
            color: #bdc3c7;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 15px;
                margin-top: 20px;
                padding-top: 15px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav.active {
                display: flex;
            }
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.2rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 25px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .btn, .btn-login {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .stat-value {
                font-size: 2rem;
            }
        }
