        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f5e6;
            color: #333;
            padding-bottom: 50px;
        }
        header {
            background-color: #e67e22;
            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: #f1c40f;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            margin-top: 15px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .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: #d35400;
            margin-bottom: 20px;
            border-bottom: 3px solid #e67e22;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 28px;
            color: #e67e22;
            margin: 30px 0 15px;
        }
        h3 {
            font-size: 22px;
            color: #d35400;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 16px;
            text-align: justify;
            max-width: 100%;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #d35400;
        }
        .btn-login {
            background-color: #27ae60;
        }
        .btn-login:hover {
            background-color: #219a52;
        }
        .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: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        ul {
            margin: 15px 0 15px 30px;
        }
        li {
            margin-bottom: 8px;
        }
        footer {
            background-color: #34495e;
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .footer-links a {
            color: #f1c40f;
            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: #d35400;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                padding: 20px;
                gap: 15px;
            }
            .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: #e67e22;
            font-weight: bold;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #3498db;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #2980b9;
        }
        .game-categories {
            margin: 25px 0;
        }
        .game-categories a {
            margin-right: 10px;
            color: #e67e22;
            text-decoration: none;
            font-weight: 500;
        }
        .game-categories a:hover {
            text-decoration: underline;
        }
