* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f5f3ef;
            color: #2c2a25;
            line-height: 1.8;
            padding-bottom: 100px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .header-nav {
            background-color: #1a5e63;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffd60a;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 38px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.18rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd60a;
            border-bottom: 3px solid #ffd60a;
        }
        .daman-link {
            background-color: #ffd60a;
            padding: 12px 28px;
            border-radius: 35px;
            color: #1a5e63 !important;
            border-bottom: none !important;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .daman-link:hover {
            background-color: #ffc800;
            transform: translateY(-3px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.16);
        }
        .menu-toggle {
            display: none;
            font-size: 2.4rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .btn {
            padding: 18px 38px;
            border-radius: 40px;
            font-size: 1.25rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.17);
            text-align: center;
            margin: 12px 0;
        }
        .download-btn {
            background-color: #ff5722;
            color: #fff;
        }
        .download-btn:hover {
            background-color: #e64a19;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
        }
        .login-btn {
            background-color: #3949ab;
            color: #fff;
        }
        .login-btn:hover {
            background-color: #283593;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(57, 73, 171, 0.3);
        }
        .hero {
            text-align: center;
            padding: 90px 25px;
            background: linear-gradient(135deg, #faf6ed 0%, #ffe0b2 100%);
            border-radius: 30px;
            margin: 60px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 3.8rem;
            color: #1a5e63;
            margin-bottom: 35px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            line-height: 1.5;
        }
        .hero p {
            font-size: 1.45rem;
            max-width: 1250px;
            margin: 0 auto 45px;
            color: #44403c;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #ff5722;
            font-size: 1.25rem;
        }
        .btn-container {
            text-align: center;
            margin: 55px 0;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        section {
            margin: 100px 0;
        }
        h2 {
            font-size: 2.6rem;
            color: #1a5e63;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ff5722;
            display: inline-block;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
        }
        h3 {
            font-size: 2.1rem;
            color: #ff5722;
            margin: 60px 0 35px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
        }
        h4 {
            font-size: 1.6rem;
            color: #26a69a;
            margin: 40px 0 25px;
        }
        p {
            margin-bottom: 35px;
            font-size: 1.2rem;
            color: #374151;
            line-height: 1.9;
        }
        .card {
            background-color: #ffffff;
            border-radius: 28px;
            padding: 55px;
            margin: 60px 0;
            box-shadow: 0 12px 32px rgba(0,0,0,0.07);
            border-left: 7px solid #1a5e63;
        }
        .image-container {
            text-align: center;
            margin: 80px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 22px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.04);
        }
        ul {
            margin: 40px 0 60px 70px;
        }
        li {
            margin-bottom: 30px;
            font-size: 1.2rem;
            color: #374151;
            list-style-type: disc;
            position: relative;
            padding-left: 25px;
        }
        li:before {
            content: "🎮";
            position: absolute;
            left: -40px;
            top: 2px;
            font-size: 1.4rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin: 80px 0;
        }
        .stat-card {
            background-color: #fef7fb;
            padding: 45px;
            border-radius: 22px;
            text-align: center;
            border-top: 7px solid #1a5e63;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #ff5722;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 1.4rem;
            color: #1a5e63;
            font-weight: 600;
        }
        .review-card {
            background-color: #f0f8fb;
            padding: 40px;
            border-radius: 22px;
            margin-bottom: 40px;
            border-right: 7px solid #ffd60a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }
        .reviewer {
            font-weight: 700;
            color: #ff5722;
            margin-bottom: 15px;
            display: block;
            font-size: 1.4rem;
        }
        .review-location {
            color: #6b7280;
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: block;
        }
        .review-rating {
            color: #ffd60a;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .tip-box {
            background-color: #f5fafe;
            padding: 40px;
            border-radius: 22px;
            margin: 60px 0;
            border-left: 7px solid #26a69a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }
        .tip-box h4 {
            color: #00695c;
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .event-card {
            background-color: #fff8f0;
            padding: 45px;
            border-radius: 22px;
            margin-bottom: 45px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }
        .event-img {
            flex: 1;
            min-width: 340px;
        }
        .event-details {
            flex: 2;
            min-width: 340px;
        }
        .event-date {
            font-weight: 700;
            color: #ff5722;
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: inline-block;
            background-color: #ffe0b2;
            padding: 12px 24px;
            border-radius: 35px;
        }
        .community-card {
            background-color: #f8f9fa;
            padding: 45px;
            border-radius: 22px;
            margin-bottom: 45px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            border-top: 7px solid #3949ab;
        }
        .community-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 35px 0;
        }
        .community-topic {
            background-color: #e9ecef;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1.1rem;
            color: #1a5e63;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .community-topic:hover {
            background-color: #ff5722;
            color: #fff;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 60px 0;
        }
        .tag {
            background-color: #f1f3f5;
            padding: 14px 28px;
            border-radius: 35px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #1a5e63;
        }
        .tag a {
            color: #343a40;
            text-decoration: none;
            font-weight: 600;
        }
        .tag:hover a {
            color: #ffffff;
        }
        .game-categories {
            margin: 70px 0;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        .category-item {
            background-color: #f8f9fa;
            padding: 14px 28px;
            border-radius: 35px;
        }
        .category-item a {
            color: #1a5e63;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .category-item a:hover {
            color: #ff5722;
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 25px;
        }
        .faq-question {
            font-weight: 700;
            font-size: 1.25rem;
            color: #1a5e63;
            margin-bottom: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            font-size: 1.15rem;
            color: #374151;
            line-height: 1.8;
        }
        .footer {
            background-color: #1a5e63;
            color: #fff;
            padding: 90px 0 60px;
            margin-top: 130px;
            border-top-left-radius: 45px;
            border-top-right-radius: 45px;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .footer-promo {
            text-align: center;
            margin: 50px 0 70px;
            font-size: 1.25rem;
            line-height: 1.9;
            color: #e0f2fe;
        }
        .footer-promo strong {
            color: #ffd60a;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid #477a7d;
            font-size: 1.1rem;
            color: #bfdbfe;
        }
        @media (max-width: 1200px) {
            .logo {
                font-size: 2.5rem;
            }
            .nav-links {
                gap: 32px;
            }
            h1 {
                font-size: 3.4rem;
            }
            h2 {
                font-size: 2.4rem;
            }
            h3 {
                font-size: 1.9rem;
            }
            .btn {
                padding: 16px 34px;
                font-size: 1.2rem;
            }
            .stat-number {
                font-size: 3.2rem;
            }
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 2.2rem;
            }
            .nav-links {
                gap: 28px;
            }
            h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .card {
                padding: 45px 35px;
            }
            .stats-grid {
                gap: 35px;
            }
            .stat-card {
                padding: 40px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #1a5e63;
                padding: 40px;
                gap: 30px;
                box-shadow: 0 18px 30px rgba(0,0,0,0.18);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.6rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .hero {
                padding: 70px 20px;
            }
            .card {
                padding: 40px 25px;
            }
            .stats-grid {
                gap: 30px;
            }
            .stat-card {
                padding: 35px;
            }
            .stat-number {
                font-size: 2.8rem;
            }
            ul {
                margin-left: 55px;
            }
            .event-card {
                padding: 35px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 16px 28px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer {
                padding: 70px 0 50px;
            }
            .tag-container {
                gap: 15px;
            }
            .tag {
                padding: 12px 22px;
                font-size: 1rem;
            }
            .category-list {
                gap: 15px;
            }
            .category-item {
                padding: 12px 22px;
            }
        }
