* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.9;
            padding-bottom: 60px;
        }
        .nav-container {
            background-color: #f97316;
            padding: 16px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .nav-wrapper {
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.25);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #0f172a;
            background-color: #ffffff;
            padding: 2px 8px;
            border-radius: 4px;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #0f172a;
            border-bottom: 2px solid #0f172a;
        }
        .daman-link {
            background-color: #0f172a;
            padding: 9px 18px;
            border-radius: 28px;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1150px;
            margin: 40px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3rem;
            color: #f97316;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 2.3rem;
            color: #f97316;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 5px solid #ffffff;
        }
        h3 {
            font-size: 1.8rem;
            color: #fbbf24;
            margin: 40px 0 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🎯";
        }
        h4 {
            font-size: 1.4rem;
            color: #cbd5e1;
            margin: 30px 0 18px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 700;
            color: #f97316;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .game-btn {
            display: inline-block;
            padding: 18px 35px;
            margin: 20px 12px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.3rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #22c55e;
            color: white;
            box-shadow: 0 6px 18px rgba(34,197,94,0.35);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
            box-shadow: 0 6px 18px rgba(59,130,246,0.35);
        }
        .game-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(0,0,0,0.2);
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
        }
        .game-img {
            max-width: 100%;
            border-radius: 18px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            margin: 40px auto;
            display: block;
            border: 3px solid #f97316;
        }
        ul, ol {
            margin: 25px 0 25px 50px;
            font-size: 1.15rem;
        }
        li {
            margin-bottom: 20px;
            padding-left: 10px;
        }
        li::marker {
            color: #f97316;
            font-size: 1.3rem;
        }
        .version-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .version-table th, .version-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 2px solid #334155;
        }
        .version-table th {
            background-color: #0f172a;
            color: #f97316;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .version-table tr {
            background-color: #1e293b;
        }
        .version-table tr:hover {
            background-color: #27364b;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        .review-card {
            background-color: #1e293b;
            border-radius: 18px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            border-left: 5px solid #f97316;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 15px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #f97316;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.4rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .reviewer-info h4 {
            margin: 0;
            color: #fbbf24;
            font-size: 1.3rem;
        }
        .reviewer-info p {
            margin: 5px 0 0;
            color: #cbd5e1;
            font-size: 1rem;
        }
        .review-rating {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .category-nav {
            margin: 60px 0 40px;
            background-color: #1e293b;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .category-nav h3 {
            margin-bottom: 25px;
            color: #f97316;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .category-links a {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .category-links a:hover {
            background-color: #f97316;
            color: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .tag-container {
            margin: 50px 0;
            background-color: #1e293b;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag {
            background-color: #27364b;
            color: #f8fafc;
            padding: 10px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tag:hover {
            background-color: #f97316;
            color: #0f172a;
            transform: translateY(-2px);
        }
        .footer {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 50px 25px;
            margin-top: 100px;
            border-top: 4px solid #f97316;
        }
        .footer-container {
            max-width: 1150px;
            margin: 0 auto;
        }
        .footer-text {
            font-size: 1.2rem;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.8;
            color: #cbd5e1;
        }
        .footer-text strong {
            color: #f97316;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            font-size: 1.05rem;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .game-btn {
                padding: 15px 30px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #f97316;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 20px;
            }
            p, ul, ol {
                font-size: 1.1rem;
            }
            .game-btn {
                padding: 14px 28px;
                font-size: 1.1rem;
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .review-card {
                padding: 25px;
            }
            .reviewer-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            .version-table th, .version-table td {
                padding: 15px;
                font-size: 1rem;
            }
            .category-links, .tags {
                gap: 12px;
            }
            .category-links a {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .tag {
                padding: 8px 18px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 15px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .footer-text {
                font-size: 1.1rem;
            }
            .copyright {
                font-size: 1rem;
            }
        }
