* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #121212;
            color: #f8f9fa;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff7f50 0%, #ff4500 100%);
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffd700;
            font-size: 2.2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .daman-link {
            color: #ffd700 !important;
            font-weight: 700;
            border-bottom: 2px solid #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7f50 0%, #ff4500 100%);
                padding: 25px;
                gap: 20px;
                border-top: 2px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.6rem;
            }
            .logo span {
                font-size: 1.8rem;
            }
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 10px 8px;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background: linear-gradient(135deg, #22c1c3 0%, #008b8b 100%);
            color: white;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        .btn-login {
            background: linear-gradient(135deg, #ffd700 0%, #ffb900 100%);
            color: #121212;
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        h1 {
            font-size: 2.5rem;
            color: #ff7f50;
            text-align: center;
            margin: 50px 0 35px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffd700;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 1.8rem;
            color: #ff9a76;
            margin: 50px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #ffd700;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "🏁 ";
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffd700;
            margin: 35px 0 20px;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            padding-bottom: 8px;
            border-bottom: 2px dashed #22c1c3;
        }
        h3::before {
            content: "🚀 ";
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                margin: 40px 0 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 18px;
            }
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.9;
            padding: 0 4px;
        }
        strong {
            color: #22c1c3;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #2d2d2d;
            padding: 3px 8px;
            border-radius: 6px;
            font-weight: 700;
            color: #ffd700;
            border: 1px solid #ff7f50;
        }
        .desi-note {
            background-color: #2d2d2d;
            padding: 18px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #ffd700;
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #f0f0f0;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
            border: 2px solid #ffd700;
        }
        img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-size: 1rem;
            color: #b0b0b0;
            margin-top: 15px;
            font-style: italic;
        }
        ul, ol {
            margin: 25px 0 35px 50px;
            font-size: 1.05rem;
            line-height: 2.1;
        }
        li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        ul li::before {
            content: "🔥 ";
            position: absolute;
            left: -35px;
            color: #ff7f50;
            font-size: 1.1rem;
        }
        ol li::before {
            content: counter(list-item) "➡️ ";
            position: absolute;
            left: -35px;
            color: #22c1c3;
            font-weight: 700;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #2d2d2d;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #444;
            font-size: 1rem;
        }
        th {
            background: linear-gradient(135deg, #ff7f50 0%, #ff4500 100%);
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover {
            background-color: #3a3a3a;
            transform: translateX(2px);
            transition: all 0.2s ease;
        }
        .game-types {
            margin: 60px 0 40px;
            background-color: #2d2d2d;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        .game-types h3 {
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 15px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .type-links a {
            color: #f8f9fa;
            background-color: #3a3a3a;
            padding: 10px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 1px solid #ff7f50;
        }
        .type-links a:hover {
            background-color: #ff7f50;
            color: #121212;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
        }
        .tags {
            margin: 50px 0 60px;
            background-color: #2d2d2d;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        .tags h3 {
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 15px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .tag-links a {
            color: #f8f9fa;
            background-color: #3a3a3a;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #22c1c3;
        }
        .tag-links a:hover {
            background-color: #22c1c3;
            color: #121212;
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(34, 193, 195, 0.3);
        }
        .recommendation {
            background: linear-gradient(135deg, #121212 0%, #2d2d2d 100%);
            color: white;
            padding: 35px;
            border-radius: 10px;
            text-align: center;
            margin: 50px 0;
            font-size: 1.2rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            border: 1px solid #ff7f50;
        }
        .recommendation strong {
            color: #ffd700;
            font-size: 1.3rem;
        }
        .footer-note {
            text-align: center;
            font-size: 1.05rem;
            margin: 40px 0 30px;
            color: #f0f0f0;
            line-height: 2;
        }
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
            margin-top: 70px;
            border-radius: 10px 10px 0 0;
            border-top: 2px solid #ff7f50;
        }
        .copyright {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        script[type="application/ld+json"] {
            display: none;
        }
        .internal-link {
            color: #22c1c3;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .internal-link:hover {
            color: #ffd700;
            border-bottom: 2px solid #ff7f50;
        }
        .faq-section {
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            background-color: #2d2d2d;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
        }
        .faq-question {
            font-size: 1.2rem;
            color: #ffd700;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .faq-answer {
            font-size: 1rem;
            color: #f0f0f0;
            line-height: 1.8;
        }
        .community-posts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .community-post {
            background-color: #2d2d2d;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .community-post:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }
        .post-author {
            font-weight: 700;
            color: #22c1c3;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }
        .post-content {
            font-size: 1rem;
            color: #f0f0f0;
            line-height: 1.7;
        }
        .post-date {
            font-size: 0.9rem;
            color: #b0b0b0;
            margin-top: 12px;
            font-style: italic;
        }
        .guide-card {
            background-color: #2d2d2d;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .guide-title {
            font-size: 1.3rem;
            color: #ffd700;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .guide-steps {
            margin-left: 25px;
        }
        .guide-steps li {
            margin-bottom: 12px;
        }
        .localization-table {
            margin: 30px 0;
        }
        .stats-highlight {
            background-color: #3a3a3a;
            padding: 18px;
            border-radius: 8px;
            margin: 25px 0;
            text-align: center;
            border: 1px solid #ff7f50;
        }
        .stats-number {
            font-size: 2.8rem;
            color: #ffd700;
            font-weight: 900;
            margin-bottom: 8px;
        }
        .stats-label {
            font-size: 1.1rem;
            color: #f0f0f0;
        }
        @media (max-width: 480px) {
            .btn {
                padding: 12px 25px;
                font-size: 0.95rem;
                margin: 8px 5px;
            }
            .btn-container {
                gap: 15px;
            }
            ul, ol {
                margin-left: 35px;
            }
            th, td {
                padding: 12px;
                font-size: 0.9rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
