* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #121019;
            color: #f5f3ff;
            font-size: 16px;
            padding-bottom: 150px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background: linear-gradient(135deg, #1e1b4b 0%, #121019 100%);
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 6px 35px rgba(0,0,0,0.8);
            border-bottom: 3px solid #7c3aed;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #a855f7;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-shadow: 0 3px 15px rgba(124,58,237,0.6);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo span {
            color: #ec4899;
            margin-left: 8px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #e0e7ff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: #a855f7;
            background-color: rgba(255,255,255,0.08);
            transform: translateY(-2px);
        }
        .daman-link, .download-nav-link {
            background-color: #7c3aed;
            color: white !important;
            font-weight: 700;
            padding: 12px 20px !important;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(124,58,237,0.4);
        }
        .daman-link:hover, .download-nav-link:hover {
            background-color: #6d28d9 !important;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(124,58,237,0.5);
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f5f3ff;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 18px 38px;
            border-radius: 12px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.4s ease;
            text-align: center;
            font-size: 1.25rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
            margin: 15px 0;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            margin-right: 25px;
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(16,185,129,0.5);
        }
        .btn-login {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(59,130,246,0.5);
        }
        .btn-container {
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        h1 {
            font-size: 3.3rem;
            color: #a855f7;
            text-align: center;
            margin: 70px 0 50px;
            line-height: 1.6;
            text-shadow: 0 5px 12px rgba(124,58,237,0.5);
            padding: 0 15px;
            font-weight: 900;
        }
        h2 {
            font-size: 2.4rem;
            color: #38bdf8;
            margin: 80px 0 35px;
            padding-bottom: 15px;
            border-bottom: 3px solid #7c3aed;
            position: relative;
            font-weight: 800;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 120px;
            height: 3px;
            background-color: #ec4899;
        }
        h3 {
            font-size: 1.9rem;
            color: #f472b6;
            margin: 60px 0 30px;
            display: flex;
            align-items: center;
            font-weight: 700;
        }
        h3::before {
            content: '⚔️';
            margin-right: 15px;
            font-size: 2rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #60a5fa;
            margin: 45px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: '🔥';
            margin-right: 12px;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            color: #e9d5ff;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 900;
            color: #ec4899;
            font-size: 1.3rem;
        }
        .key-term {
            font-weight: 800;
            color: #38bdf8;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 2px;
        }
        .stat-box {
            background-color: rgba(255,255,255,0.05);
            border-radius: 18px;
            padding: 30px;
            margin: 50px 0;
            border-left: 7px solid #a855f7;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
        }
        .stat-box p {
            margin-bottom: 18px;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
        }
        .stat-box p::before {
            content: '📊';
            margin-right: 12px;
            font-size: 1.3rem;
        }
        .stat-box p:last-child {
            margin-bottom: 0;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.7);
            border: 3px solid rgba(124,58,237,0.4);
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            transition: transform 0.7s ease;
        }
        .img-container:hover .img-responsive {
            transform: scale(1.04);
        }
        ul, ol {
            margin: 35px 0 50px 45px;
        }
        li {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #e9d5ff;
            line-height: 1.8;
            position: relative;
            padding-left: 30px;
        }
        ul li::before {
            content: '✅';
            position: absolute;
            left: -35px;
            top: 5px;
            font-size: 1.2rem;
        }
        ol li {
            counter-increment: list-counter;
        }
        ol li::before {
            content: counter(list-counter) '.';
            position: absolute;
            left: -40px;
            font-weight: 800;
            color: #f472b6;
            font-size: 1.2rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: rgba(30,27,75,0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        th, td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }
        th {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: #f5f3ff;
            font-weight: 800;
            font-size: 1.25rem;
        }
        td {
            color: #e9d5ff;
            font-size: 1.15rem;
        }
        tr:hover {
            background-color: rgba(255,255,255,0.07);
            transform: scale(1.01);
            transition: transform 0.3s ease;
        }
        .game-categories {
            margin: 70px 0 50px;
        }
        .game-categories h4, .tags-section h4 {
            margin-bottom: 30px;
            color: #a855f7;
            font-size: 1.6rem;
        }
        .game-categories a, .tags-section a {
            display: inline-block;
            color: #e9d5ff;
            text-decoration: none;
            margin: 0 15px 15px 0;
            padding: 12px 28px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .game-categories a:hover, .tags-section a:hover {
            background-color: #7c3aed;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(124,58,237,0.4);
        }
        footer {
            background: linear-gradient(135deg, #121019 0%, #1e1b4b 100%);
            padding: 80px 0 50px;
            margin-top: 120px;
            border-top: 4px solid #7c3aed;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 1.7rem;
            color: #a855f7;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255,255,255,0.15);
        }
        .recommendation {
            margin: 60px 0;
            font-size: 1.4rem;
            color: #e9d5ff;
            text-align: center;
            line-height: 2.3;
            padding: 35px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 18px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        .copyright {
            text-align: center;
            margin-top: 70px;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.15);
            color: #a5b4fc;
            font-size: 1.1rem;
            line-height: 2.2;
        }
        .faq-container {
            margin: 70px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        .faq-question {
            font-size: 1.3rem;
            color: #38bdf8;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .faq-question::before {
            content: '❓';
            margin-right: 15px;
            font-size: 1.4rem;
        }
        .faq-answer {
            font-size: 1.15rem;
            color: #e9d5ff;
            line-height: 2;
        }
        .desi-note {
            background-color: rgba(244,114,182,0.12);
            border-left: 5px solid #f472b6;
            padding: 25px;
            margin: 45px 0;
            border-radius: 0 12px 12px 0;
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 1.25rem;
            color: #fce7f3;
            font-weight: 600;
            line-height: 2;
        }
        .testimonial-container {
            margin: 70px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        .testimonial-card {
            background-color: rgba(255,255,255,0.05);
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            border-top: 3px solid #a855f7;
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .testimonial-avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background-color: #7c3aed;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 15px;
        }
        .testimonial-name {
            font-size: 1.3rem;
            color: #a855f7;
            font-weight: 800;
        }
        .testimonial-location {
            font-size: 1rem;
            color: #a5b4fc;
        }
        .testimonial-text {
            font-size: 1.15rem;
            color: #e9d5ff;
            line-height: 1.9;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 3rem;
                margin: 65px 0 45px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 75px 0 32px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 55px 0 28px;
            }
            .btn {
                padding: 16px 35px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.7rem;
                margin: 60px 0 40px;
            }
            h2 {
                font-size: 2rem;
                margin: 70px 0 30px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 50px 0 25px;
            }
            .stat-box {
                padding: 25px;
            }
            .stat-box p {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #1e1b4b 0%, #121019 100%);
                padding: 40px 25px;
                gap: 30px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.7);
                border-bottom: 3px solid #7c3aed;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            .logo {
                font-size: 1.9rem;
            }
            h1 {
                font-size: 2.4rem;
                margin: 55px 0 35px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 65px 0 28px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 45px 0 22px;
            }
            h4 {
                font-size: 1.5rem;
            }
            p, li, .faq-answer, .testimonial-text {
                font-size: 1.1rem;
                line-height: 1.85;
            }
            .btn {
                padding: 16px 32px;
                width: 100%;
                margin-right: 0;
            }
            .btn-container {
                gap: 20px;
            }
            table {
                font-size: 1.05rem;
            }
            th, td {
                padding: 18px;
            }
            .img-container {
                margin: 50px 0;
            }
            .desi-note {
                padding: 22px;
            }
            .desi-note p {
                font-size: 1.15rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.1rem;
                margin: 50px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 40px 0 20px;
            }
            h4 {
                font-size: 1.4rem;
            }
            p, li, .faq-answer, .testimonial-text {
                font-size: 1.05rem;
                line-height: 1.8;
            }
            .stat-box {
                padding: 22px;
            }
            .footer-container {
                gap: 40px;
            }
            .game-categories a, .tags-section a {
                padding: 10px 22px;
                font-size: 1rem;
                margin: 0 12px 12px 0;
            }
            .recommendation {
                padding: 25px;
                font-size: 1.25rem;
            }
            .copyright {
                font-size: 1rem;
            }
        }
