* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #2d3748;
            line-height: 1.8;
        }
        .header {
            background-color: #0f172a;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #ffffff;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav {
            display: block;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: #fbbf24;
        }
        .nav-link.daman-link {
            color: #fbbf24;
            font-weight: 600;
        }
        .main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .hero-section {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 12px;
            color: #ffffff;
        }
        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #fbbf24;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #e2e8f0;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            min-width: 200px;
        }
        .btn-download {
            background-color: #dc2626;
            color: #ffffff;
        }
        .btn-download:hover {
            background-color: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }
        .btn-login {
            background-color: #22c55e;
            color: #ffffff;
        }
        .btn-login:hover {
            background-color: #16a34a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }
        .section {
            margin-bottom: 60px;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #0f172a;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 10px;
            display: inline-block;
        }
        .section-content {
            font-size: 1.05rem;
            margin-bottom: 25px;
        }
        .highlight {
            font-weight: 700;
            color: #dc2626;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }
        .stats-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #0f172a;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8fafc;
            border-radius: 8px;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #22c55e;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #475569;
            font-weight: 500;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0f172a;
        }
        .reviewer-location {
            font-size: 0.95rem;
            color: #64748b;
            margin-top: 3px;
        }
        .review-rating {
            color: #fbbf24;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .review-content {
            font-size: 1.05rem;
            color: #334155;
            line-height: 1.7;
        }
        .guides-container {
            margin: 30px 0;
        }
        .guide-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .guide-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
        }
        .guide-content {
            font-size: 1.05rem;
            color: #334155;
            margin-bottom: 15px;
        }
        .guide-list {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        .guide-list li {
            margin-bottom: 10px;
        }
        .events-list {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            margin: 30px 0;
        }
        .event-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e2e8f0;
        }
        .event-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .event-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .event-date {
            font-size: 0.95rem;
            color: #dc2626;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .event-content {
            font-size: 1.05rem;
            color: #334155;
        }
        .footer {
            background-color: #0f172a;
            color: #e2e8f0;
            padding: 60px 0 30px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 20px;
        }
        .game-types-list {
            list-style: none;
        }
        .game-type-link {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.05rem;
            margin-bottom: 12px;
            display: inline-block;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #fbbf24;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-link {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #fbbf24;
            color: #0f172a;
            font-weight: 500;
        }
        .recommendation-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .recommendation-link {
            color: #fbbf24;
            font-weight: 600;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            .nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 15px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.9rem;
            }
            .btn {
                min-width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
