* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #fff8e6; 
            color: #333;
            padding-bottom: 40px;
        }
        .main-nav {
            background-color: #ff9800; 
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            color: white;
            font-size: 1.4rem;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            margin-bottom: 10px;
        }
        .menu-toggle {
            display: block;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        .nav-links {
            list-style: none;
            display: none;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }
        .nav-links.active {
            display: flex;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .nav-links a[href="https://www.damangames.center"] {
            background-color: #e65100;
            font-weight: bold;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #e65100;
            font-size: 2rem;
            text-align: center;
            margin: 30px 0;
            padding-bottom: 15px;
            border-bottom: 2px solid #ffcc80;
        }
        h2 {
            color: #d84315;
            font-size: 1.6rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ff9800;
        }
        h3 {
            color: #e65100;
            font-size: 1.3rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1rem;
            text-align: justify;
        }
        strong {
            color: #d84315;
        }
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 30px 0;
            align-items: center;
        }
        .download-button, .login-button {
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s;
        }
        .download-button {
            background-color: #4caf50; 
            color: white;
        }
        .login-button {
            background-color: #2196f3; 
            color: white;
        }
        .download-button:hover, .login-button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        ul {
            margin: 15px 0 15px 30px;
        }
        li {
            margin-bottom: 10px;
        }
        .main-footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .game-categories h3, .tags h3 {
            color: #ff9800;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .game-categories ul, .tags ul {
            list-style: none;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-categories a, .tags a {
            color: #ffcc80;
            text-decoration: none;
            padding: 5px 10px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .recommendation {
            background-color: rgba(255,152,0,0.1);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #ccc;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
        @media (min-width: 768px) {
            .menu-toggle {
                display: none;
            }
            .main-nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .logo {
                margin-bottom: 0;
            }
            .nav-links {
                display: flex;
                flex-direction: row;
                margin-top: 0;
            }
            .action-buttons {
                flex-direction: row;
                justify-content: center;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
