* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #2A2A2A;
            --light: #F8F9FA;
            --shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .daman-link {
            color: var(--accent) !important;
            font-weight: 600;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
            margin-right: 10px;
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        .mobile-menu {
            display: none;
            background-color: white;
            box-shadow: var(--shadow);
            padding: 20px;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-menu.active {
            display: flex;
        }
        .main-content {
            padding: 40px 0;
        }
        h1 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 32px;
            color: var(--primary);
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 24px;
            color: var(--dark);
            margin: 35px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        strong {
            color: var(--primary);
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            justify-content: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            object-fit: cover;
        }
        .image-small {
            width: 300px;
        }
        .image-large {
            width: 800px;
        }
        .feature-list {
            list-style-type: none;
            margin: 30px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .feature-item {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .feature-item emoji {
            font-size: 32px;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .character-card {
            background-color: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
        }
        .character-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .character-info {
            padding: 20px;
        }
        .character-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .level-world {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .level-world h4 {
            font-size: 20px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .awards-list {
            list-style-type: disc;
            margin: 20px 0 20px 40px;
        }
        .awards-list li {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .faq-container {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin: 40px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-question {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            display: none;
            margin-top: 10px;
        }
        .faq-answer.active {
            display: block;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 22px;
        }
        .game-categories, .tags {
            list-style-type: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-categories li a, .tags li a {
            color: white;
            text-decoration: none;
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 20px;
            transition: background-color 0.3s ease;
        }
        .game-categories li a:hover, .tags li a:hover {
            background-color: var(--primary);
        }
        .recommendation {
            background-color: rgba(78,205,196,0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--accent);
            font-size: 20px;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 16px;
            color: #ccc;
        }
        @media (max-width: 992px) {
            .nav-links, .btn {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
            }
            .image-large {
                width: 100%;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .header-content {
                padding: 10px 0;
            }
            .logo {
                font-size: 24px;
            }
            .mobile-menu {
                top: 60px;
            }
        }
