* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.9;
            padding-bottom: 100px;
            font-size: 16px;
        }
        .nav-container {
            background-color: #f97316;
            padding: 20px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.3rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #0f172a;
            background: linear-gradient(135deg, #fbbf24 0%, #fde047 100%);
            padding: 6px 15px;
            border-radius: 10px;
            border: 3px solid #0f172a;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #fde047;
            border-bottom: 3px solid #fde047;
        }
        .daman-link {
            background-color: #0f172a;
            padding: 12px 25px;
            border-radius: 35px;
            border-bottom: none !important;
            font-size: 1.2rem;
        }
        .daman-link:hover {
            background-color: #1e293b;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.4);
            color: #fde047;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 10000;
        }
        .container {
            max-width: 1250px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3.5rem;
            color: #f97316;
            text-align: center;
            margin-bottom: 70px;
            padding-bottom: 30px;
            border-bottom: 6px solid #fde047;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
            line-height: 1.4;
        }
        h2 {
            font-size: 2.6rem;
            color: #f97316;
            margin: 90px 0 40px;
            padding-left: 30px;
            border-left: 7px solid #fde047;
            line-height: 1.5;
        }
        h3 {
            font-size: 2.1rem;
            color: #fde047;
            margin: 60px 0 32px;
            display: flex;
            align-items: center;
            gap: 15px;
            line-height: 1.6;
        }
        h3::before {
            content: "🎯";
        }
        h4 {
            font-size: 1.6rem;
            color: #22d3ee;
            margin: 40px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::after {
            content: "🌟";
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 10px;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 900;
            color: #f97316;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 3px;
        }
        .game-btn {
            display: inline-block;
            padding: 22px 45px;
            margin: 30px 20px;
            border-radius: 45px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 4px solid transparent;
            cursor: pointer;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .download-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 10px 25px rgba(16,185,129,0.5);
            border-color: #047857;
        }
        .login-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 10px 25px rgba(59,130,246,0.5);
            border-color: #1d4ed8;
        }
        .game-btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            border-color: #fde047;
        }
        .btn-container {
            text-align: center;
            margin: 90px 0;
        }
        .game-img {
            max-width: 100%;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            margin: 60px auto;
            display: block;
            border: 5px solid #f97316;
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.03);
        }
        ul, ol {
            margin: 35px 0 35px 70px;
            font-size: 1.2rem;
        }
        li {
            margin-bottom: 25px;
            padding-left: 20px;
            line-height: 1.8;
        }
        li::marker {
            color: #f97316;
            font-size: 1.7rem;
        }
        .version-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .version-table th, .version-table td {
            padding: 25px;
            text-align: left;
            border-bottom: 4px solid #1e293b;
        }
        .version-table th {
            background-color: #0f172a;
            color: #f97316;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .version-table tr {
            background-color: #1e293b;
        }
        .version-table tr:hover {
            background-color: #334155;
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        .review-card {
            background-color: #1e293b;
            border-radius: 25px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
            border-left: 7px solid #f97316;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            gap: 25px;
        }
        .reviewer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.8rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.4);
            border: 4px solid #fde047;
        }
        .reviewer-info h4 {
            margin: 0;
            color: #fde047;
            font-size: 1.5rem;
        }
        .reviewer-info p {
            margin: 10px 0 0;
            color: #cbd5e1;
            font-size: 1.1rem;
        }
        .review-rating {
            color: #fde047;
            margin-bottom: 25px;
            font-size: 2rem;
        }
        .category-nav {
            margin: 90px 0 60px;
            background-color: #1e293b;
            padding: 35px;
            border-radius: 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .category-nav h3 {
            margin-bottom: 35px;
            color: #f97316;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .category-links a {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 16px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.15rem;
        }
        .category-links a:hover {
            background-color: #f97316;
            color: #0f172a;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.3);
        }
        .tag-container {
            margin: 80px 0;
            background-color: #1e293b;
            padding: 35px;
            border-radius: 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .tag {
            background-color: #334155;
            color: #f8fafc;
            padding: 14px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .tag:hover {
            background-color: #f97316;
            color: #0f172a;
            transform: translateY(-4px);
        }
        .footer {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 70px 40px;
            margin-top: 150px;
            border-top: 6px solid #f97316;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
        }
        .footer-text {
            font-size: 1.3rem;
            margin-bottom: 60px;
            text-align: center;
            line-height: 2.2;
            color: #cbd5e1;
        }
        .footer-text strong {
            color: #f97316;
            font-size: 1.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 3px solid #1e293b;
            font-size: 1.2rem;
            color: #94a3b8;
            line-height: 2;
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.4rem;
            }
            h3 {
                font-size: 1.9rem;
            }
            .game-btn {
                padding: 20px 40px;
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #f97316;
                padding: 50px;
                gap: 35px;
                box-shadow: 0 20px 25px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.6rem;
                margin-bottom: 60px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 80px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 50px 0 30px;
            }
            p, ul, ol {
                font-size: 1.15rem;
            }
            .game-btn {
                padding: 18px 35px;
                font-size: 1.3rem;
                display: block;
                margin: 25px auto;
                width: 95%;
            }
            .review-card {
                padding: 35px;
            }
            .reviewer-avatar {
                width: 70px;
                height: 70px;
                font-size: 1.6rem;
            }
            .version-table th, .version-table td {
                padding: 20px;
                font-size: 1.1rem;
            }
            .category-links, .tags {
                gap: 20px;
            }
            .category-links a {
                padding: 14px 25px;
                font-size: 1.1rem;
            }
            .tag {
                padding: 12px 22px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 20px;
            }
            ul, ol {
                margin-left: 50px;
            }
            .footer-text {
                font-size: 1.2rem;
            }
            .copyright {
                font-size: 1.1rem;
            }
        }
