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