* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #f5f7f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #556b2f 0%, #8fbc8f 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: 28px;
            font-weight: bold;
            color: #ffffff;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
        }
        .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: 8px;
        }
        nav ul li {
            margin: 5px 10px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1001;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #556b2f;
            text-align: center;
            margin: 40px 0 30px;
            font-size: 36px;
            padding-bottom: 15px;
            border-bottom: 4px solid #8fbc8f;
            font-weight: 800;
        }
        h2 {
            color: #556b2f;
            margin: 40px 0 25px;
            font-size: 28px;
            border-left: 5px solid #8fbc8f;
            padding-left: 15px;
            font-weight: 700;
        }
        h3 {
            color: #2f4f4f;
            margin: 30px 0 18px;
            font-size: 24px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 15px 15px;
            background-color: #556b2f;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(85, 107, 47, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #2f4f4f;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(85, 107, 47, 0.4);
        }
        .btn-login {
            background-color: #4682b4;
            box-shadow: 0 4px 10px rgba(70, 130, 180, 0.3);
        }
        .btn-login:hover {
            background-color: #5f9ea0;
            box-shadow: 0 6px 15px rgba(70, 130, 180, 0.4);
        }
        .image-container {
            text-align: center;
            margin: 40px 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: #556b2f;
            text-shadow: 0 0 1px rgba(85, 107, 47, 0.2);
        }
        .game-stats {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 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: 25px 15px;
            background-color: #f0f5e6;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 34px;
            font-weight: bold;
            color: #556b2f;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #2f4f4f;
            font-size: 17px;
        }
        .tips-list {
            margin-left: 40px;
            margin-bottom: 40px;
        }
        .tips-list li {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-left: 10px;
        }
        .tag-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag {
            display: inline-block;
            background-color: #e8f0e0;
            color: #333;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #c8e6c9;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 50px 0;
        }
        .type-link {
            color: #4682b4;
            text-decoration: none;
            margin-right: 20px;
            font-size: 18px;
            font-weight: 500;
            position: relative;
        }
        .type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #4682b4;
            transition: width 0.3s ease;
        }
        .type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2f4f4f;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 23px;
            margin-bottom: 25px;
            color: #e0f2f1;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            font-size: 16px;
            color: #e0e0e0;
        }
        .quote-box {
            background-color: #f0f5e6;
            border-left: 4px solid #556b2f;
            padding: 25px 30px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-text {
            font-style: italic;
            color: #2f4f4f;
            font-size: 19px;
        }
        .quote-author {
            text-align: right;
            margin-top: 15px;
            color: #556b2f;
            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(85, 107, 47, 0.95);
                border-radius: 10px;
                padding: 25px 0;
                position: absolute;
                top: 80px;
                left: 10px;
                right: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                width: 85%;
                text-align: center;
            }
            nav ul li a {
                display: block;
                width: 100%;
                font-size: 17px;
                padding: 10px 15px;
            }
            h1 {
                font-size: 30px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 25px;
                margin: 30px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 25px 0 15px;
            }
            p {
                font-size: 17px;
                margin-bottom: 22px;
            }
            .btn {
                display: block;
                margin: 18px auto;
                width: 90%;
                padding: 15px 20px;
                font-size: 19px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 12px;
            }
            .quote-box {
                padding: 20px 25px;
            }
        }
