* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #1a1a1a;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        .header {
            background-color: #0d2b5c;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .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: #ffcc00;
            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: #e0e0e0;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 5px 0;
        }
        .nav-link:hover, .nav-link.active {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
        }
        .nav-link.daman-link {
            color: #ffcc00;
            font-weight: 600;
        }
        .main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .hero-section {
            text-align: center;
            margin-bottom: 50px;
            padding: 50px 20px;
            background: linear-gradient(135deg, #1a365d 0%, #0d2b5c 100%);
            border-radius: 12px;
            color: #ffffff;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #ffcc00;
        }
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e0e0;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        .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: #e63946;
            color: #ffffff;
        }
        .btn-download:hover {
            background-color: #d62828;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }
        .btn-login {
            background-color: #4cc9f0;
            color: #0d2b5c;
        }
        .btn-login:hover {
            background-color: #4361ee;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(76, 201, 240, 0.3);
        }
        .section {
            margin-bottom: 70px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #0d2b5c;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 10px;
            display: inline-block;
        }
        .section-content {
            font-size: 1.05rem;
            margin-bottom: 30px;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-card {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
        }
        .stats-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #0d2b5c;
            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: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #4cc9f0;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #4a5568;
            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: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0d2b5c;
        }
        .reviewer-location {
            font-size: 0.95rem;
            color: #64748b;
            margin-top: 3px;
        }
        .review-rating {
            color: #ffcc00;
            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: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .guide-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0d2b5c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .guide-title:before {
            content: "•";
            color: #e63946;
            font-size: 1.8rem;
            margin-right: 10px;
        }
        .guide-content {
            font-size: 1.05rem;
            color: #334155;
            margin-bottom: 15px;
        }
        .guide-list {
            padding-left: 30px;
            margin-bottom: 15px;
        }
        .guide-list li {
            margin-bottom: 10px;
            position: relative;
        }
        .guide-list li:before {
            content: "→";
            color: #4cc9f0;
            position: absolute;
            left: -20px;
        }
        .events-list {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin: 30px 0;
        }
        .event-item {
            margin-bottom: 30px;
            padding-bottom: 30px;
            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: #0d2b5c;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .event-title:before {
            content: "📅";
            margin-right: 10px;
        }
        .event-date {
            font-size: 0.95rem;
            color: #e63946;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .event-content {
            font-size: 1.05rem;
            color: #334155;
        }
        .community-section {
            background-color: #f0f9ff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        .community-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0d2b5c;
            margin-bottom: 20px;
            text-align: center;
        }
        .community-platforms {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .community-platform {
            text-align: center;
            padding: 15px;
            background-color: #ffffff;
            border-radius: 8px;
            min-width: 150px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .platform-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #4cc9f0;
        }
        .platform-name {
            font-weight: 600;
            color: #0d2b5c;
        }
        .footer {
            background-color: #0d2b5c;
            color: #e0e0e0;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .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: #ffcc00;
            margin-bottom: 20px;
        }
        .game-types-list {
            list-style: none;
        }
        .game-type-link {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.05rem;
            margin-bottom: 12px;
            display: inline-block;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #ffcc00;
            transform: translateX(5px);
            display: inline-block;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-link {
            background-color: #1a365d;
            color: #e0e0e0;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #ffcc00;
            color: #0d2b5c;
            font-weight: 500;
        }
        .recommendation-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .recommendation-link {
            color: #ffcc00;
            font-weight: 600;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1a365d;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        @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 {
                padding: 25px 20px;
            }
            .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;
            }
            .section {
                padding: 20px 15px;
            }
        }
