* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f9f5f0;
            color: #2d3436;
            font-size: 1rem;
            padding-bottom: 80px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #ff7600;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 18px rgba(0,0,0,0.18);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 15px;
            letter-spacing: 1.5px;
        }
        .logo span {
            color: #ffdd59;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd59;
            border-bottom: 3px solid #ffdd59;
        }
        .download-nav, .login-nav, .daman-link {
            background-color: #ffdd59;
            color: #ff7600 !important;
            padding: 12px 25px;
            border-radius: 10px;
            border-bottom: none !important;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .download-nav:hover, .login-nav:hover, .daman-link:hover {
            background-color: #ffc107;
            transform: translateY(-4px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .hamburger {
            display: none;
            font-size: 2.1rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #ff7600;
                flex-direction: column;
                padding: 35px 25px;
                gap: 25px;
                display: none;
                box-shadow: 0 8px 25px rgba(0,0,0,0.25);
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
            .nav-links a {
                font-size: 1.15rem;
                width: 100%;
                text-align: center;
                padding: 12px;
                border-radius: 8px;
            }
            .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: 15px;
            }
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-btn, .login-btn {
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .login-btn {
            background-color: #2980b9;
            color: white;
        }
        .login-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .download-btn:hover {
            background-color: #219653;
        }
        .login-btn:hover {
            background-color: #2471a3;
        }
        @media (max-width: 768px) {
            .btn-container {
                flex-direction: column;
                gap: 25px;
            }
            .download-btn, .login-btn {
                width: 100%;
                justify-content: center;
                padding: 20px;
                font-size: 1.25rem;
            }
        }
        h1 {
            font-size: 3rem;
            color: #ff7600;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #ffdd59;
            padding-bottom: 25px;
            line-height: 1.6;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 2.4rem;
            color: #8e44ad;
            margin: 70px 0 35px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            padding-left: 20px;
        }
        h2::before {
            content: "🏆";
            font-size: 2rem;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 15px;
            bottom: 15px;
            width: 5px;
            background-color: #ffdd59;
            border-radius: 5px;
        }
        h3 {
            font-size: 1.9rem;
            color: #ff7600;
            margin: 55px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: "🚀";
            font-size: 1.6rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #16a085;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "🌟";
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                margin: 50px 0 35px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 60px 0 30px;
                gap: 15px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 50px 0 25px;
            }
            h4 {
                font-size: 1.4rem;
                margin: 40px 0 20px;
            }
        }
        .game-img {
            width: 100%;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 8px 22px rgba(0,0,0,0.18);
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-img:hover {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-size: 1.05rem;
            color: #636e72;
            margin-top: -25px;
            margin-bottom: 40px;
            font-style: italic;
            font-weight: 500;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            text-align: justify;
            padding: 0 5px;
            line-height: 2;
        }
        .highlight {
            background-color: #ffeaa7;
            padding: 5px 12px;
            border-radius: 8px;
            font-weight: 700;
            color: #ff7600;
            display: inline-block;
            margin: 0 3px;
        }
        .key-term {
            font-weight: 800;
            color: #8e44ad;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 3px;
        }
        .desi-note {
            background-color: #fff3cd;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 6px solid #ff7600;
        }
        .desi-note p {
            margin-bottom: 0;
            font-weight: 600;
            color: #2d3436;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.2rem;
        }
        ul, ol {
            margin: 35px 0 40px 50px;
            font-size: 1.15rem;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 20px;
            padding-left: 15px;
        }
        li::marker {
            color: #ff7600;
            font-weight: 700;
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            p {
                font-size: 1.1rem;
                line-height: 1.9;
                margin-bottom: 25px;
            }
            ul, ol {
                margin: 30px 0 35px 40px;
                font-size: 1.1rem;
                line-height: 2.1;
            }
            li {
                margin-bottom: 18px;
            }
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #f1f2f6;
        }
        .stats-table th {
            background-color: #ff7600;
            color: white;
            font-weight: 700;
            font-size: 1.15rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .stats-table {
                font-size: 1rem;
            }
            .stats-table th, .stats-table td {
                padding: 15px 12px;
            }
            .stats-table th {
                font-size: 1.05rem;
            }
        }
        .review-card, .guide-card, .event-card, .community-card {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-top: 6px solid #ff7600;
        }
        .reviewer, .guide-author, .event-host, .community-poster {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
        }
        .reviewer-avatar, .guide-avatar, .event-avatar, .community-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #2980b9;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.6rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .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: #8e44ad;
            font-size: 1.25rem;
        }
        .reviewer-location, .guide-location, .event-date, .community-date {
            color: #636e72;
            font-size: 1rem;
        }
        .review-rating {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .review-text, .guide-text, .event-text, .community-text {
            line-height: 2.1;
            font-size: 1.15rem;
        }
        .event-prize {
            background-color: #e3f2fd;
            padding: 18px;
            border-radius: 10px;
            margin-top: 25px;
            font-weight: 600;
            color: #27ae60;
            font-size: 1.2rem;
            border-left: 5px solid #2980b9;
        }
        .community-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .community-tag {
            background-color: #f5f6fa;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.95rem;
            color: #16a085;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .review-card, .guide-card, .event-card, .community-card {
                padding: 30px;
            }
            .reviewer, .guide-author, .event-host, .community-poster {
                gap: 20px;
            }
            .reviewer-avatar, .guide-avatar, .event-avatar, .community-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }
            .review-text, .guide-text, .event-text, .community-text {
                font-size: 1.1rem;
                line-height: 2;
            }
        }
        .tabs {
            display: flex;
            gap: 15px;
            margin: 40px 0;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 15px;
        }
        .tab-btn {
            padding: 15px 28px;
            background-color: #f1f2f6;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            color: #ff7600;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 1.05rem;
        }
        .tab-btn.active {
            background-color: #ff7600;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
        }
        .tab-btn:hover:not(.active) {
            background-color: #eaecee;
            transform: translateY(-3px);
        }
        .tab-content {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .tabs {
                gap: 10px;
            }
            .tab-btn {
                padding: 12px 22px;
                font-size: 1rem;
            }
            .tab-content {
                padding: 30px;
            }
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffdd59;
            border-bottom: 4px solid #ffdd59;
            padding-bottom: 15px;
            margin-top: 0;
        }
        .footer-section a {
            color: #dfe6e9;
            text-decoration: none;
            display: block;
            margin-bottom: 18px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-section a:hover {
            color: #ffdd59;
            padding-left: 10px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            background-color: #34495e;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ff7600;
            color: white !important;
            padding-left: 20px !important;
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: #34495e;
            padding: 35px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffdd59;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.05rem;
            color: #b2bec3;
        }
        .game-type-nav {
            margin: 30px 0 40px;
        }
        .game-type-nav h4 {
            margin-bottom: 25px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        @media (max-width: 768px) {
            .footer-container {
                gap: 40px;
                margin-bottom: 50px;
            }
            .footer-section h4 {
                font-size: 1.3rem;
                margin-bottom: 25px;
                padding-bottom: 12px;
            }
            .footer-section a {
                font-size: 1.05rem;
                margin-bottom: 15px;
            }
            .recommendation {
                padding: 30px;
                font-size: 1.2rem;
            }
            .copyright {
                font-size: 1rem;
                padding-top: 35px;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f5f6fa;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff7600;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e67e22;
        }
        .faq-container {
            margin: 50px 0;
        }
        .faq-item {
            background-color: white;
            margin-bottom: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .faq-question {
            padding: 25px 30px;
            background-color: #f8f9fa;
            font-weight: 700;
            color: #ff7600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
        }
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        .faq-answer.active {
            padding: 25px 30px 30px;
            max-height: 1000px;
        }
        .faq-icon {
            transition: transform 0.3s ease;
            font-size: 1.5rem;
        }
        .faq-icon.active {
            transform: rotate(180deg);
        }
        .schema-meta {
            display: none;
        }
