* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c2c2c;
            background-color: #faf6ed;
            padding-bottom: 80px;
            scroll-behavior: smooth;
        }
        .nav-container {
            background-color: #9333ea;
            padding: 20px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.18);
        }
        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.7px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.25);
        }
        .logo span {
            color: #fde047;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #fde047;
            border-bottom: 3px solid #fde047;
        }
        .daman-link, .download-nav-link {
            background-color: #10b981;
            padding: 12px 24px;
            border-radius: 10px;
            border-bottom: none !important;
        }
        .daman-link:hover, .download-nav-link:hover {
            background-color: #059669;
            color: #ffffff !important;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(16, 185, 129, 0.35);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: #ffffff;
            cursor: pointer;
            z-index: 10000;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: #9333ea;
                padding: 90px 30px 40px;
                gap: 25px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.22);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
            .daman-link, .download-nav-link {
                width: 100%;
                text-align: center;
            }
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 50px 30px;
        }
        h1 {
            font-size: 3rem;
            color: #9333ea;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #f59e0b;
            padding-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.12);
        }
        h2 {
            font-size: 2.3rem;
            color: #1e3a8a;
            margin: 60px 0 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 18px;
            border-left: 6px solid #f59e0b;
            padding-left: 20px;
        }
        h2::before {
            content: "🤾‍♂️";
            font-size: 2.2rem;
        }
        h3 {
            font-size: 1.7rem;
            color: #9333ea;
            margin: 40px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🔥";
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #10b981;
            margin: 30px 0 18px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: #9333ea;
            font-weight: 800;
        }
        .highlight {
            background-color: #fffbeb;
            padding: 25px;
            border-left: 6px solid #fde047;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e3a8a;
        }
        .img-container {
            margin: 45px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            transition: transform 0.4s ease;
        }
        img:hover {
            transform: translateY(-7px);
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #10b981;
            color: white;
        }
        .download-btn:hover {
            background-color: #059669;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .login-btn:hover {
            background-color: #2563eb;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
        }
        ul, ol {
            margin: 30px 0 30px 60px;
        }
        li {
            margin-bottom: 18px;
            font-size: 1.15rem;
            line-height: 1.8;
        }
        li::marker {
            color: #f59e0b;
            font-size: 1.3rem;
        }
        .game-types {
            background-color: #1e3a8a;
            color: white;
            padding: 35px 30px;
            margin: 70px 0 50px;
            border-radius: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .game-types h3 {
            color: #fde047;
            margin-bottom: 25px;
            border-bottom: 3px solid #fde047;
            padding-bottom: 15px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .type-links a {
            color: white;
            text-decoration: none;
            background-color: #9333ea;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .type-links a:hover {
            background-color: #fde047;
            color: #1e3a8a;
            transform: translateY(-3px);
        }
        .tags {
            margin: 50px 0 60px;
        }
        .tags h3 {
            margin-bottom: 25px;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 15px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            color: #1e3a8a;
            text-decoration: none;
            background-color: #fffbeb;
            padding: 10px 22px;
            border-radius: 30px;
            border: 3px solid #fde047;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-links a:hover {
            background-color: #9333ea;
            color: white;
            border-color: #9333ea;
        }
        .recommendation {
            background-color: #f0f9ff;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
            font-size: 1.3rem;
            color: #1e3a8a;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .recommendation strong {
            color: #9333ea;
        }
        .copyright {
            text-align: center;
            padding: 30px;
            background-color: #2c2c2c;
            color: #ffffff;
            margin-top: 70px;
            font-size: 1.05rem;
            border-radius: 12px 12px 0 0;
        }
        .copyright a {
            color: #fde047;
            text-decoration: none;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.4rem;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1.1rem;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.2rem;
                width: 100%;
                max-width: 400px;
            }
            ul, ol {
                margin: 25px 0 25px 35px;
            }
            .img-container {
                margin: 35px 0;
            }
            .highlight {
                padding: 20px;
            }
            .container {
                padding: 40px 25px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .nav-container {
                padding: 18px 25px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            .game-types, .tags {
                padding: 25px 20px;
            }
        }
