* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f0f4f8;
            color: #1e293b;
            font-size: 1rem;
            padding-bottom: 80px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0f172a;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #f97316;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fbbf24;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #fbbf24;
            border-bottom: 3px solid #fbbf24;
        }
        .download-nav, .login-nav, .daman-link {
            background-color: #f97316;
            color: #ffffff !important;
            padding: 14px 28px;
            border-radius: 12px;
            border-bottom: none !important;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }
        .download-nav:hover, .login-nav:hover, .daman-link:hover {
            background-color: #ea580c;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                flex-direction: column;
                padding: 40px 25px;
                gap: 30px;
                display: none;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.9rem;
            }
            .nav-links a {
                font-size: 1.2rem;
                width: 100%;
                text-align: center;
                padding: 15px;
                border-radius: 10px;
            }
            .nav-links a:hover {
                background-color: rgba(255,255,255,0.1);
                border-bottom: none;
            }
            .download-nav, .login-nav, .daman-link {
                width: 100%;
                text-align: center;
                padding: 18px;
            }
        }
        .btn-container {
            margin: 60px 0;
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-btn, .login-btn {
            padding: 20px 45px;
            border: none;
            border-radius: 15px;
            font-size: 1.4rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 18px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        }
        .download-btn {
            background-color: #10b981;
            color: white;
        }
        .download-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .login-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.25);
        }
        .download-btn:hover {
            background-color: #059669;
        }
        .login-btn:hover {
            background-color: #2563eb;
        }
        @media (max-width: 768px) {
            .btn-container {
                flex-direction: column;
                gap: 30px;
            }
            .download-btn, .login-btn {
                width: 100%;
                justify-content: center;
                padding: 22px;
                font-size: 1.3rem;
            }
        }
        h1 {
            font-size: 3.2rem;
            color: #0f172a;
            margin: 70px 0 45px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #f97316;
            padding-bottom: 30px;
            line-height: 1.7;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.5rem;
            color: #2563eb;
            margin: 80px 0 40px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 22px;
            position: relative;
            padding-left: 25px;
        }
        h2::before {
            content: "🥇";
            font-size: 2.2rem;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 20px;
            bottom: 20px;
            width: 6px;
            background-color: #f97316;
            border-radius: 6px;
        }
        h3 {
            font-size: 2rem;
            color: #f97316;
            margin: 60px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        h3::before {
            content: "🥋";
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #059669;
            margin: 50px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: "🔥";
            font-size: 1.4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.6rem;
                margin: 60px 0 40px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 70px 0 35px;
                gap: 18px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 55px 0 30px;
            }
            h4 {
                font-size: 1.5rem;
                margin: 45px 0 25px;
            }
        }
        .game-img {
            width: 100%;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-img:hover {
            transform: scale(1.04);
        }
        .img-caption {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-top: -30px;
            margin-bottom: 50px;
            font-style: italic;
            font-weight: 500;
        }
        p {
            margin-bottom: 35px;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 8px;
            line-height: 2.1;
        }
        .highlight {
            background-color: #fed7aa;
            padding: 6px 14px;
            border-radius: 10px;
            font-weight: 700;
            color: #ea580c;
            display: inline-block;
            margin: 0 5px;
        }
        .key-term {
            font-weight: 800;
            color: #2563eb;
            text-decoration: underline;
            text-underline-offset: 10px;
            text-decoration-thickness: 3px;
        }
        .desi-note {
            background-color: #fffbeb;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            border-left: 8px solid #f97316;
        }
        .desi-note p {
            margin-bottom: 0;
            font-weight: 600;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 1.3rem;
        }
        ul, ol {
            margin: 40px 0 45px 60px;
            font-size: 1.2rem;
            line-height: 2.3;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 25px;
            padding-left: 20px;
        }
        li::marker {
            color: #f97316;
            font-weight: 700;
            font-size: 1.4rem;
        }
        @media (max-width: 768px) {
            p {
                font-size: 1.15rem;
                line-height: 2;
                margin-bottom: 30px;
            }
            ul, ol {
                margin: 35px 0 40px 45px;
                font-size: 1.15rem;
                line-height: 2.2;
            }
            li {
                margin-bottom: 22px;
            }
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
        }
        .stats-table th, .stats-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        .stats-table th {
            background-color: #0f172a;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .stats-table tr:hover {
            background-color: #f8fafc;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .stats-table {
                font-size: 1.05rem;
            }
            .stats-table th, .stats-table td {
                padding: 18px 15px;
            }
            .stats-table th {
                font-size: 1.1rem;
            }
        }
        .review-card, .guide-card, .event-card, .community-card {
            background-color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            border-top: 8px solid #f97316;
        }
        .reviewer, .guide-author, .event-host, .community-poster {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        .reviewer-avatar, .guide-avatar, .event-avatar, .community-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #3b82f6;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.25);
        }
        .reviewer-info, .guide-info, .event-info, .community-info {
            display: flex;
            flex-direction: column;
        }
        .reviewer-name, .guide-name, .event-name, .community-name {
            font-weight: 700;
            color: #2563eb;
            font-size: 1.35rem;
        }
        .reviewer-location, .guide-location, .event-date, .community-date {
            color: #64748b;
            font-size: 1.1rem;
        }
        .review-rating {
            color: #f59e0b;
            margin-bottom: 25px;
            font-size: 1.7rem;
        }
        .review-text, .guide-text, .event-text, .community-text {
            line-height: 2.2;
            font-size: 1.2rem;
        }
        .event-prize {
            background-color: #dbeafe;
            padding: 22px;
            border-radius: 12px;
            margin-top: 30px;
            font-weight: 600;
            color: #059669;
            font-size: 1.3rem;
            border-left: 6px solid #3b82f6;
        }
        .community-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .community-tag {
            background-color: #f1f5f9;
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 1rem;
            color: #059669;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .review-card, .guide-card, .event-card, .community-card {
                padding: 35px;
            }
            .reviewer, .guide-author, .event-host, .community-poster {
                gap: 25px;
            }
            .reviewer-avatar, .guide-avatar, .event-avatar, .community-avatar {
                width: 70px;
                height: 70px;
                font-size: 1.6rem;
            }
            .review-text, .guide-text, .event-text, .community-text {
                font-size: 1.15rem;
                line-height: 2.1;
            }
        }
        .tabs {
            display: flex;
            gap: 20px;
            margin: 50px 0;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 20px;
        }
        .tab-btn {
            padding: 18px 32px;
            background-color: #f1f5f9;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            color: #f97316;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 1.1rem;
        }
        .tab-btn.active {
            background-color: #f97316;
            color: white;
            box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
        }
        .tab-btn:hover:not(.active) {
            background-color: #e2e8f0;
            transform: translateY(-4px);
        }
        .tab-content {
            background-color: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            margin-bottom: 50px;
        }
        @media (max-width: 768px) {
            .tabs {
                gap: 15px;
            }
            .tab-btn {
                padding: 15px 25px;
                font-size: 1.05rem;
            }
            .tab-content {
                padding: 35px;
            }
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 80px 0 50px;
            margin-top: 120px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: #fbbf24;
            border-bottom: 4px solid #fbbf24;
            padding-bottom: 18px;
            margin-top: 0;
        }
        .footer-section a {
            color: #e2e8f0;
            text-decoration: none;
            display: block;
            margin-bottom: 22px;
            transition: all 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-section a:hover {
            color: #fbbf24;
            padding-left: 12px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }
        .tag {
            background-color: #1e293b;
            padding: 14px 22px;
            border-radius: 35px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #f97316;
            color: white !important;
            padding-left: 22px !important;
            transform: translateY(-4px);
        }
        .recommendation {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fbbf24;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.1rem;
            color: #94a3b8;
        }
        .game-type-nav {
            margin: 40px 0 50px;
        }
        .game-type-nav h4 {
            margin-bottom: 30px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .footer-container {
                gap: 50px;
                margin-bottom: 60px;
            }
            .footer-section h4 {
                font-size: 1.4rem;
                margin-bottom: 30px;
                padding-bottom: 15px;
            }
            .footer-section a {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .recommendation {
                padding: 35px;
                font-size: 1.3rem;
            }
            .copyright {
                font-size: 1.05rem;
                padding-top: 45px;
            }
        }
        ::-webkit-scrollbar {
            width: 14px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #f97316;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ea580c;
        }
        .faq-container {
            margin: 60px 0;
        }
        .faq-item {
            background-color: white;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
            overflow: hidden;
        }
        .faq-question {
            padding: 30px 35px;
            background-color: #f8fafc;
            font-weight: 700;
            color: #f97316;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
        }
        .faq-answer {
            padding: 0 35px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        .faq-answer.active {
            padding: 30px 35px 35px;
            max-height: 1500px;
        }
        .faq-icon {
            transition: transform 0.3s ease;
            font-size: 1.7rem;
        }
        .faq-icon.active {
            transform: rotate(180deg);
        }
        .schema-meta {
            display: none;
        }
