* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #faf6f0;
            color: #333;
            padding-bottom: 80px;
        }
        .header {
            background-color: #1a5d1a;
            color: #fff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffdd00;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        .logo span {
            color: #fff;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffdd00;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .daman-link {
            background-color: #ffdd00;
            color: #1a5d1a !important;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .daman-link:hover {
            background-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ffdd00;
            background: transparent;
            border: none;
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3rem;
            color: #1a5d1a;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 4px solid #ffdd00;
            font-weight: 900;
            letter-spacing: 0.8px;
            text-transform: capitalize;
        }
        h2 {
            font-size: 2.3rem;
            color: #1a5d1a;
            margin: 70px 0 35px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 800;
            position: relative;
            text-transform: capitalize;
        }
        h2::before {
            content: "🏹";
            font-size: 1.6em;
        }
        h2::after {
            content: "";
            flex: 1;
            height: 3px;
            background-color: #ffdd00;
            margin-left: 20px;
        }
        h3 {
            font-size: 1.8rem;
            color: #2d7d2d;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🎯";
            font-size: 1.3em;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            line-height: 1.9;
            text-align: justify;
            color: #3a3a3a;
        }
        .highlight {
            font-weight: 800;
            color: #1a5d1a;
            font-size: 1.25rem;
        }
        .btn-container {
            display: flex;
            gap: 30px;
            margin: 50px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 18px 40px;
            border: none;
            border-radius: 35px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.18);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .download-btn {
            background-color: #ffdd00;
            color: #1a5d1a;
            min-width: 280px;
        }
        .download-btn:hover {
            background-color: #ffc800;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .login-btn {
            background-color: #1a5d1a;
            color: #fff;
            min-width: 280px;
        }
        .login-btn:hover {
            background-color: #0f420f;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 60px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border: 5px solid #fff;
        }
        .image-caption {
            font-size: 1.05rem;
            color: #666;
            margin-top: 20px;
            font-style: italic;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        .stats-card {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
            padding: 20px;
            border-radius: 12px;
            background-color: #f9f9f9;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .stat-number {
            font-size: 3.2rem;
            font-weight: 900;
            color: #1a5d1a;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .stat-label {
            color: #555;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: capitalize;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .review-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #1a5d1a;
        }
        .reviewer {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #e8f4e8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #1a5d1a;
            font-size: 1.4rem;
            border: 3px solid #1a5d1a;
        }
        .reviewer-info {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 700;
            font-size: 1.25rem;
            color: #1a5d1a;
        }
        .reviewer-location {
            font-size: 1rem;
            color: #666;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .reviewer-location::before {
            content: "📍";
        }
        .review-rating {
            color: #ffdd00;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .review-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }
        .guide-tips {
            background-color: #f3f9f3;
            border-left: 6px solid #1a5d1a;
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
        }
        .guide-tip {
            margin-bottom: 25px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .guide-tip:last-child {
            margin-bottom: 0;
        }
        .guide-tip::before {
            content: "🎯";
            font-size: 1.8rem;
            margin-top: 5px;
        }
        .guide-tip-text {
            flex: 1;
            font-size: 1.15rem;
            line-height: 1.8;
        }
        .guide-tip-text strong {
            color: #1a5d1a;
            font-weight: 800;
        }
        .event-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .event-card {
            background-color: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 7px 18px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.18);
        }
        .event-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .event-details {
            padding: 30px;
        }
        .event-title {
            font-size: 1.5rem;
            color: #1a5d1a;
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .event-date {
            color: #666;
            font-size: 1.05rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .event-date::before {
            content: "📅";
            font-size: 1.2rem;
        }
        .event-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
        }
        .event-rewards {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
        }
        .event-rewards-title {
            font-weight: 700;
            color: #1a5d1a;
            margin-bottom: 12px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        .event-rewards-title::before {
            content: "🏆";
            font-size: 1.3rem;
        }
        .event-rewards-list {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.9;
            list-style-position: inside;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 50px 0;
        }
        .tag {
            padding: 12px 25px;
            background-color: #e8f4e8;
            color: #1a5d1a;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .tag:hover {
            background-color: #1a5d1a;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .game-type-nav {
            margin: 60px 0 40px;
            padding: 25px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.09);
        }
        .game-type-title {
            font-size: 1.4rem;
            color: #1a5d1a;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .game-type-links a {
            color: #1a5d1a;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: 25px;
            background-color: #f3f9f3;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .game-type-links a:hover {
            background-color: #1a5d1a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .community-section {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        .community-platform {
            background-color: #f9f9f9;
            border-radius: 15px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .community-platform:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .platform-icon {
            font-size: 2.5rem;
            color: #1a5d1a;
            margin-bottom: 15px;
        }
        .platform-title {
            font-size: 1.3rem;
            color: #1a5d1a;
            margin-bottom: 10px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .platform-desc {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
        }
        .footer {
            background-color: #1a5d1a;
            color: #fff;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #ffdd00;
            margin-bottom: 30px;
            font-size: 1.6rem;
            border-bottom: 3px solid #ffdd00;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            text-transform: capitalize;
        }
        .footer-links a:hover {
            color: #ffdd00;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .recommendation {
            background-color: #0f420f;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }
        .recommendation-text {
            font-size: 1.3rem;
            color: #fff;
            line-height: 2;
            font-weight: 500;
        }
        .recommendation-text strong {
            color: #ffdd00;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid #2d7d2d;
            font-size: 1.1rem;
            color: #e0e0e0;
            line-height: 1.8;
        }
        @media (max-width: 1199px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .stat-number {
                font-size: 2.9rem;
            }
            .event-list {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }
        @media (max-width: 991px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #1a5d1a;
                padding: 40px 25px;
                gap: 25px;
                box-shadow: 0 15px 15px rgba(0,0,0,0.15);
                border-top: 2px solid #ffdd00;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 50px 0 30px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 35px 0 20px;
            }
            p {
                font-size: 1.15rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 20px;
            }
            .btn {
                width: 100%;
                padding: 16px 25px;
                font-size: 1.2rem;
            }
            .stats-card {
                padding: 30px;
                gap: 30px;
            }
            .stat-item {
                min-width: 160px;
                padding: 15px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .review-container {
                gap: 25px;
            }
            .event-list {
                gap: 30px;
            }
            .event-image {
                height: 220px;
            }
            .footer {
                padding: 50px 0 30px;
            }
        }
        @media (max-width: 767px) {
            .logo {
                font-size: 1.9rem;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .stat-item {
                min-width: 140px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .stat-label {
                font-size: 1.1rem;
            }
            .review-card {
                padding: 25px;
            }
            .event-card {
                min-width: 100%;
            }
            .recommendation-text {
                font-size: 1.2rem;
            }
            .community-platforms {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 575px) {
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 1.9rem;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.6rem;
                gap: 10px;
            }
            h2::before {
                font-size: 1.4em;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.1rem;
            }
            .image-caption {
                font-size: 1rem;
            }
            .stats-card {
                gap: 20px;
            }
            .stat-item {
                min-width: 120px;
            }
            .stat-number {
                font-size: 2rem;
            }
            .event-details {
                padding: 25px;
            }
            .event-title {
                font-size: 1.3rem;
            }
            .tag {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .copyright {
                font-size: 1rem;
            }
        }
