* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #0f3460;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffd166;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffffff;
            font-size: 1.8rem;
            margin-left: 10px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #ffd166;
            border-bottom: 3px solid #ffd166;
        }
        .daman-link {
            color: #ffd166 !important;
            font-weight: 700;
            border-bottom: 3px solid #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #0f3460;
                padding: 30px;
                gap: 25px;
                border-top: 2px solid rgba(255,255,255,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.9rem;
            }
            .logo span {
                font-size: 1.5rem;
            }
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            border-radius: 12px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 15px 10px;
            text-align: center;
            font-size: 1.15rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border: none;
        }
        .btn-download {
            background-color: #22c1c3;
            color: white;
            background-image: linear-gradient(135deg, #22c1c3 0%, #136a8a 100%);
        }
        .btn-download:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .btn-login {
            background-color: #ff6b6b;
            color: white;
            background-image: linear-gradient(135deg, #ff6b6b 0%, #c026d3 100%);
        }
        .btn-login:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd166;
            text-align: center;
            margin: 60px 0 45px;
            padding-bottom: 25px;
            border-bottom: 5px solid #22c1c3;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.4rem;
            color: #f0f0f5;
            margin: 60px 0 30px;
            padding-left: 25px;
            border-left: 6px solid #ff6b6b;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "⚔️ ";
            margin-right: 12px;
        }
        h3 {
            font-size: 1.9rem;
            color: #ffd166;
            margin: 40px 0 25px;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 2px dashed #22c1c3;
        }
        h3::before {
            content: "🛡️ ";
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                margin: 45px 0 35px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2.0rem;
                margin: 50px 0 25px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 35px 0 20px;
            }
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 2;
            padding: 0 5px;
        }
        strong {
            color: #22c1c3;
            font-weight: 800;
            font-size: 1.25rem;
        }
        .highlight {
            background-color: #2a2a4a;
            padding: 4px 10px;
            border-radius: 8px;
            font-weight: 800;
            color: #ffd166;
            border: 1px solid #ff6b6b;
        }
        .desi-note {
            background-color: #2a2a4a;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid #ffd166;
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #f0f0f5;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            transition: transform 0.4s ease;
            border: 3px solid #ffd166;
        }
        img:hover {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-size: 1.1rem;
            color: #b0b0c0;
            margin-top: 20px;
            font-style: italic;
        }
        ul, ol {
            margin: 30px 0 40px 60px;
            font-size: 1.2rem;
            line-height: 2.2;
        }
        li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 10px;
        }
        ul li::before {
            content: "🔥 ";
            position: absolute;
            left: -40px;
            color: #ff6b6b;
            font-size: 1.3rem;
        }
        ol li::before {
            content: counter(list-item) "▶️ ";
            position: absolute;
            left: -40px;
            color: #22c1c3;
            font-weight: 800;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: #2a2a4a;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        th, td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #3a3a6a;
            font-size: 1.15rem;
        }
        th {
            background-color: #0f3460;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        tr:hover {
            background-color: #3a3a6a;
            transform: translateX(3px);
            transition: all 0.3s ease;
        }
        .game-types {
            margin: 70px 0 50px;
            background-color: #2a2a4a;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .game-types h3 {
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 20px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .type-links a {
            color: #f0f0f5;
            background-color: #3a3a6a;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 2px solid #22c1c3;
        }
        .type-links a:hover {
            background-color: #22c1c3;
            color: #1a1a2e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(34, 193, 195, 0.4);
        }
        .tags {
            margin: 60px 0 70px;
            background-color: #2a2a4a;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .tags h3 {
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 20px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .tag-links a {
            color: #f0f0f5;
            background-color: #3a3a6a;
            padding: 10px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border: 1px solid #ff6b6b;
        }
        .tag-links a:hover {
            background-color: #ffd166;
            color: #1a1a2e;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(255, 209, 102, 0.4);
        }
        .recommendation {
            background-color: #0f3460;
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 60px 0;
            font-size: 1.35rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background-image: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
        }
        .recommendation strong {
            color: #ffd166;
            font-size: 1.5rem;
        }
        .footer-note {
            text-align: center;
            font-size: 1.2rem;
            margin: 50px 0 40px;
            color: #f0f0f5;
            line-height: 2.2;
        }
        footer {
            background-color: #1a1a2e;
            color: white;
            padding: 50px 0 30px;
            text-align: center;
            margin-top: 80px;
            border-radius: 15px 15px 0 0;
            border-top: 3px solid #ffd166;
        }
        .copyright {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        script[type="application/ld+json"] {
            display: none;
        }
        .internal-link {
            color: #22c1c3;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            font-size: 1.25rem;
        }
        .internal-link:hover {
            color: #ffd166;
            border-bottom: 3px solid #ff6b6b;
        }
        .faq-section {
            margin: 70px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            background-color: #2a2a4a;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .faq-question {
            font-size: 1.3rem;
            color: #ffd166;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .faq-answer {
            font-size: 1.15rem;
            color: #f0f0f5;
            line-height: 1.9;
        }
        .community-posts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .community-post {
            background-color: #2a2a4a;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .community-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .post-author {
            font-weight: 700;
            color: #22c1c3;
            margin-bottom: 10px;
            font-size: 1.15rem;
        }
        .post-content {
            font-size: 1.1rem;
            color: #f0f0f5;
            line-height: 1.8;
        }
        .post-date {
            font-size: 0.95rem;
            color: #b0b0c0;
            margin-top: 15px;
            font-style: italic;
        }
        .guide-card {
            background-color: #2a2a4a;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .guide-title {
            font-size: 1.5rem;
            color: #ffd166;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .guide-steps {
            margin-left: 30px;
        }
        .guide-steps li {
            margin-bottom: 15px;
        }
        .localization-table {
            margin: 40px 0;
        }
        .stats-highlight {
            background-color: #3a3a6a;
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
        }
        .stats-number {
            font-size: 3rem;
            color: #ffd166;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .stats-label {
            font-size: 1.2rem;
            color: #f0f0f5;
        }
