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