* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3748;
            padding-bottom: 60px;
        }
        header {
            background-color: #2c5282;
            color: #ffffff;
            padding: 18px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f6ad55;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f6ad55;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c5282;
            margin-bottom: 25px;
            font-size: 2.4rem;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #f6ad55;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #2c5282;
            margin: 40px 0 20px;
            font-size: 1.9rem;
            border-left: 4px solid #f6ad55;
            padding-left: 15px;
        }
        h3 {
            color: #2c5282;
            margin: 25px 0 15px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "💡";
            margin-right: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #4a5568;
        }
        .highlight {
            font-weight: bold;
            color: #c53030;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #f6ad55;
            color: #2c5282;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            margin: 15px 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #ed8936;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 2px solid #e2e8f0;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #f6ad55;
        }
        .stats-box p {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .stats-box p:last-child {
            border-bottom: none;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #ebf8ff;
            color: #2c5282;
            padding: 8px 16px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #bee3f8;
            transform: scale(1.05);
        }
        footer {
            background-color: #2c5282;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0;
        }
        .game-types a {
            color: #f6ad55;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        .game-types a:hover {
            color: #ed8936;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.9;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .tip-box {
            background-color: #fff8e1;
            border-left: 5px solid #ecc94b;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        .tip-box p {
            color: #4a5568;
            margin-bottom: 0;
        }
        .emoji-list li {
            list-style-type: none;
            margin: 10px 0;
            padding-left: 10px;
        }
        .emoji-list li::before {
            content: "✅";
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #2c5282;
                padding: 25px;
                gap: 20px;
                z-index: 100;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                width: 90%;
                text-align: center;
            }
            .stats-box {
                padding: 20px;
            }
        }
