* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #27ae60;
            padding: 15px 20px;
            color: white;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
            text-align: center;
            margin-bottom: 10px;
        }
        .nav {
            display: flex;
            gap: 25px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav a:hover {
            color: #ffeb3b;
            border-bottom: 2px solid #ffeb3b;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 10;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #27ae60;
            margin: 30px 0 20px;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #27ae60;
            margin: 40px 0 15px;
            font-size: 2rem;
            border-bottom: 3px solid #f39c12;
            padding-bottom: 8px;
        }
        h3 {
            color: #e67e22;
            margin: 25px 0 12px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 4px solid #f39c12;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #27ae60;
            text-decoration: underline dotted #f39c12;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .game-type {
            margin: 40px 0 25px;
        }
        .game-type a, .tags a {
            color: #27ae60;
            text-decoration: none;
            margin-right: 12px;
            padding: 6px 12px;
            background-color: #e8f5e9;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 10px;
        }
        .game-type a:hover, .tags a:hover {
            background-color: #c8e6c9;
            transform: scale(1.05);
        }
        .tags {
            margin: 25px 0 45px;
        }
        .footer {
            background-color: #27ae60;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer p {
            margin-bottom: 15px;
            text-align: left;
        }
        .copyright {
            margin-top: 30px;
            font-size: 0.95rem;
            opacity: 0.8;
            text-align: center;
        }
        ul {
            margin: 15px 0 25px 30px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .quote {
            border-left: 4px solid #f39c12;
            padding-left: 15px;
            margin: 20px 0;
            font-style: italic;
            color: #555;
        }
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                margin-top: 20px;
                gap: 15px;
                background-color: #219653;
                padding: 20px;
                border-radius: 8px;
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 12px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 20px 0 10px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                width: 80%;
                text-align: center;
            }
            .image-container {
                margin: 25px 0;
            }
            ul {
                margin: 15px 0 20px 20px;
            }
        }
