* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e65c00 0%, #ff9500 100%);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #ffffff;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px;
        }
        nav ul li {
            margin: 5px 8px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            top: 18px;
            right: 20px;
            z-index: 1001;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #cc5500;
            text-align: center;
            margin: 35px 0 25px;
            font-size: 34px;
            padding-bottom: 12px;
            border-bottom: 4px solid #ff9500;
            font-weight: 800;
        }
        h2 {
            color: #e65c00;
            margin: 35px 0 20px;
            font-size: 28px;
            border-left: 5px solid #ff9500;
            padding-left: 15px;
            font-weight: 700;
        }
        h3 {
            color: #ff7a00;
            margin: 28px 0 15px;
            font-size: 23px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 12px 15px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 19px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
        }
        .btn-login {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        .btn-login:hover {
            background-color: #2980b9;
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        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);
        }
        .highlight {
            font-weight: bold;
            color: #cc5500;
            text-shadow: 0 0 1px rgba(204, 85, 0, 0.3);
        }
        .game-stats {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff3cd;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 32px;
            font-weight: bold;
            color: #cc5500;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #856404;
            font-size: 17px;
        }
        .tips-list {
            margin-left: 35px;
            margin-bottom: 35px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 18px;
            position: relative;
            padding-left: 10px;
        }
        .tag-container {
            margin: 45px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-block;
            background-color: #ffe066;
            color: #333;
            padding: 9px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #ffc107;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
        }
        .type-link {
            color: #2980b9;
            text-decoration: none;
            margin-right: 18px;
            font-size: 18px;
            font-weight: 500;
            position: relative;
        }
        .type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #2980b9;
            transition: width 0.3s ease;
        }
        .type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #feca57;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 35px;
            font-size: 15px;
            color: #ecf0f1;
        }
        .quote-box {
            background-color: #fff0e6;
            border-left: 4px solid #ff7a00;
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-text {
            font-style: italic;
            color: #4d4d4d;
            font-size: 18px;
        }
        .quote-author {
            text-align: right;
            margin-top: 10px;
            color: #cc5500;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                background-color: rgba(230, 92, 0, 0.95);
                border-radius: 10px;
                padding: 20px 0;
                position: absolute;
                top: 70px;
                left: 10px;
                right: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                width: 80%;
                text-align: center;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 24px;
                margin: 25px 0 15px;
            }
            h3 {
                font-size: 20px;
                margin: 20px 0 10px;
            }
            p {
                font-size: 17px;
                margin-bottom: 20px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 85%;
                padding: 14px 20px;
                font-size: 18px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .tips-list {
                margin-left: 25px;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
