        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f0f8fb;
            color: #2d3748;
            padding-bottom: 50px;
        }
        header {
            background-color: #00796b;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffccbc;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffccbc;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .main-content {
            padding: 30px 0;
        }
        h1 {
            font-size: 36px;
            color: #00695c;
            margin-bottom: 20px;
            border-bottom: 3px solid #00796b;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 28px;
            color: #00796b;
            margin: 30px 0 15px;
        }
        h3 {
            font-size: 22px;
            color: #00695c;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 16px;
            text-align: justify;
            max-width: 100%;
            line-height: 1.8;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #00796b;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #00695c;
        }
        .btn-login {
            background-color: #2e7d32;
        }
        .btn-login:hover {
            background-color: #256929;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .highlight-box {
            background-color: #e8f5e9;
            border-left: 4px solid #ff8a65;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        ul {
            margin: 15px 0 15px 30px;
        }
        li {
            margin-bottom: 8px;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .footer-links a {
            color: #ffccbc;
            text-decoration: none;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .copyright {
            margin-top: 20px;
            font-size: 14px;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                background-color: #00695c;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                padding: 20px;
                gap: 15px;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 15px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .special-symbol {
            color: #00796b;
            font-weight: bold;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #3949ab;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #303f9f;
        }
        .game-categories {
            margin: 25px 0;
        }
        .game-categories a {
            margin-right: 10px;
            color: #00796b;
            text-decoration: none;
            font-weight: 500;
        }
        .game-categories a:hover {
            text-decoration: underline;
        }
        img {
            loading: lazy;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f8fb;
        }
        ::-webkit-scrollbar-thumb {
            background: #00796b;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #00695c;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .highlight-box {
            animation: fadeIn 0.5s ease-in-out;
        }
