* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            scroll-behavior: smooth;
            padding-bottom: 100px;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #1e293b;
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 6px 25px rgba(0,0,0,0.7);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 900;
            color: #f43f5e;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            text-shadow: 0 4px 8px rgba(0,0,0,0.5);
            margin-bottom: 15px;
        }
        .logo span {
            color: #6366f1;
        }
        .desktop-nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .desktop-nav a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #f43f5e;
            border-bottom: 2px solid #f43f5e;
        }
        .daman-link {
            background-color: #f43f5e;
            padding: 12px 25px;
            border-radius: 10px;
            border-bottom: none !important;
            font-weight: 700;
        }
        .daman-link:hover {
            background-color: #db2777;
            color: #ffffff !important;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(244,63,94,0.5);
        }
        .hamburger {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: #f8fafc;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 30px;
            padding: 30px 0;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 12px 25px rgba(0,0,0,0.7);
            border-top: 1px solid #334155;
        }
        .mobile-nav a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0 25px;
            transition: color 0.3s ease;
        }
        .mobile-nav a:hover {
            color: #f43f5e;
        }
        .mobile-nav.active {
            display: flex;
        }
        .btn {
            display: inline-block;
            padding: 18px 35px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            margin: 18px 12px;
            text-align: center;
            font-size: 1.2rem;
            box-shadow: 0 6px 18px rgba(0,0,0,0.4);
            border: none;
        }
        .btn-download {
            background-color: #10b981;
            color: #0f172a;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(16,185,129,0.6);
        }
        .btn-login {
            background-color: #6366f1;
            color: #ffffff;
        }
        .btn-login:hover {
            background-color: #4f46e5;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(99,102,241,0.6);
        }
        h1 {
            font-size: 3.5rem;
            color: #f43f5e;
            margin: 80px 0 50px;
            text-align: center;
            line-height: 1.7;
            text-shadow: 0 4px 12px rgba(0,0,0,0.6);
        }
        h2 {
            font-size: 2.5rem;
            color: #facc15;
            margin: 90px 0 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #334155;
            line-height: 1.6;
        }
        h3 {
            font-size: 2rem;
            color: #6366f1;
            margin: 60px 0 35px;
            line-height: 1.6;
        }
        p {
            margin-bottom: 35px;
            font-size: 1.25rem;
            color: #e2e8f0;
            padding: 0 3px;
        }
        .highlight {
            font-weight: 800;
            color: #f43f5e;
            font-size: 1.35rem;
        }
        .desi-note {
            background-color: #1e293b;
            padding: 30px;
            border-left: 7px solid #f43f5e;
            border-radius: 0 15px 15px 0;
            margin: 50px 0;
            font-size: 1.3rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.5);
        }
        .desi-note strong {
            color: #facc15;
            font-size: 1.4rem;
        }
        .game-img {
            width: 100%;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.7);
            border: 4px solid #6366f1;
        }
        ul, ol {
            margin: 40px 0 50px 45px;
            color: #e2e8f0;
            font-size: 1.25rem;
            line-height: 2.3;
        }
        li {
            margin-bottom: 30px;
            position: relative;
            padding-left: 25px;
        }
        li:before {
            content: "🔥";
            position: absolute;
            left: -35px;
            font-size: 1.2rem;
        }
        ol li:before {
            content: none;
        }
        ol {
            list-style-type: decimal;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: #1e293b;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.6);
        }
        th, td {
            padding: 25px;
            text-align: left;
            border-bottom: 1px solid #334155;
            font-size: 1.2rem;
        }
        th {
            background-color: #334155;
            color: #f8fafc;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }
        tr:hover {
            background-color: #27364b;
        }
        .game-types {
            margin: 100px 0 80px;
        }
        .game-types h3 {
            margin-bottom: 40px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .type-links a {
            color: #6366f1;
            background-color: #1e293b;
            padding: 16px 30px;
            border-radius: 35px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            font-weight: 600;
            border: 1px solid #6366f1;
        }
        .type-links a:hover {
            background-color: #6366f1;
            color: #0f172a;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(99,102,241,0.5);
        }
        .tags {
            margin: 80px 0 100px;
        }
        .tags h3 {
            margin-bottom: 40px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .tag-links a {
            color: #facc15;
            background-color: #1e293b;
            padding: 14px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid #facc15;
        }
        .tag-links a:hover {
            background-color: #facc15;
            color: #0f172a;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(250,204,21,0.5);
        }
        .recommendation {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 20px;
            margin: 80px 0;
            text-align: center;
            font-size: 1.35rem;
            box-shadow: 0 12px 30px rgba(0,0,0,0.6);
            border: 2px solid #f43f5e;
        }
        .recommendation strong {
            color: #f43f5e;
            font-size: 1.5rem;
        }
        .community-section {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 20px;
            margin: 80px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.6);
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            margin-top: 30px;
        }
        .community-links a {
            color: #10b981;
            background-color: #0f172a;
            padding: 15px 30px;
            border-radius: 35px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            font-weight: 600;
            border: 1px solid #10b981;
        }
        .community-links a:hover {
            background-color: #10b981;
            color: #0f172a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(16,185,129,0.4);
        }
        footer {
            background-color: #1e293b;
            padding: 70px 0;
            margin-top: 120px;
            border-top: 4px solid #334155;
        }
        .copyright {
            text-align: center;
            color: #94a3b8;
            font-size: 1.2rem;
            line-height: 2.2;
            margin-top: 40px;
        }
        .footer-note {
            text-align: center;
            color: #cbd5e1;
            font-size: 1.25rem;
            margin-bottom: 40px;
            line-height: 2;
        }
        .footer-recommendation {
            text-align: center;
            color: #f8fafc;
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 2;
        }
        .footer-recommendation a {
            color: #f43f5e;
            text-decoration: none;
            font-weight: 700;
        }
        @media (max-width: 1200px) {
            .desktop-nav {
                gap: 35px;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.3rem;
            }
            h3 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 992px) {
            .desktop-nav {
                gap: 30px;
            }
            .logo {
                font-size: 1.9rem;
            }
            h1 {
                font-size: 2.9rem;
                margin: 70px 0 45px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 80px 0 35px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 50px 0 30px;
            }
            p, ul, ol, .desi-note {
                font-size: 1.2rem;
            }
            th, td {
                padding: 22px;
                font-size: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.7rem;
                margin-bottom: 0;
            }
            h1 {
                font-size: 2.5rem;
                margin: 60px 0 40px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 70px 0 30px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 45px 0 25px;
            }
            p, ul, ol, .desi-note {
                font-size: 1.15rem;
            }
            .btn {
                width: 100%;
                margin: 15px 0;
                padding: 16px 30px;
            }
            .container {
                padding: 0 20px;
            }
            th, td {
                padding: 20px;
                font-size: 1.1rem;
            }
            .type-links, .tag-links, .community-links {
                gap: 18px;
            }
            .type-links a {
                padding: 14px 26px;
                font-size: 1.1rem;
            }
            .tag-links a {
                padding: 12px 24px;
                font-size: 1.05rem;
            }
            .community-links a {
                padding: 13px 26px;
                font-size: 1.1rem;
            }
            .recommendation {
                padding: 35px;
                font-size: 1.25rem;
            }
            footer {
                padding: 60px 0;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
                margin: 50px 0 35px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 40px 0 20px;
            }
            .logo {
                font-size: 1.5rem;
            }
            .mobile-nav {
                gap: 28px;
                padding: 28px 0;
            }
            .game-img {
                margin: 40px 0;
                border-width: 3px;
            }
            .desi-note {
                padding: 25px;
                margin: 35px 0;
            }
            table {
                margin: 40px 0;
            }
            th, td {
                padding: 18px;
                font-size: 1rem;
            }
            .recommendation {
                padding: 30px;
                font-size: 1.15rem;
            }
            .copyright {
                font-size: 1.1rem;
            }
            .footer-note, .footer-recommendation {
                font-size: 1.15rem;
            }
        }
