* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e63946;
            color: white;
            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: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .daman-link {
            background-color: #457b9d;
            padding: 8px 15px !important;
            border-radius: 20px;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #1d3557;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #e63946;
        }
        h2 {
            color: #1d3557;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #e63946;
        }
        h3 {
            color: #1d3557;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .game-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 200px;
        }
        .download-btn {
            background-color: #2a9d8f;
            color: white;
            box-shadow: 0 4px 0 #21867a;
        }
        .download-btn:hover {
            background-color: #21867a;
            transform: translateY(2px);
            box-shadow: 0 2px 0 #1d7466;
        }
        .login-btn {
            background-color: #f4a261;
            color: #264653;
            box-shadow: 0 4px 0 #e09050;
        }
        .login-btn:hover {
            background-color: #e09050;
            transform: translateY(2px);
            box-shadow: 0 2px 0 #c98040;
        }
        .image-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 5px solid #457b9d;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e63946;
            margin: 15px 0;
        }
        .review-container {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #1d3557;
        }
        .rating {
            color: #f4a261;
            font-weight: bold;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-details {
            padding: 20px;
        }
        .event-title {
            font-weight: bold;
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1d3557;
        }
        .community-section {
            background-color: #f1faee;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .tag {
            background-color: #a8dadc;
            color: #1d3557;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #457b9d;
            color: white;
        }
        .game-types {
            margin: 40px 0;
        }
        .type-link {
            color: #457b9d;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.1rem;
        }
        .type-link:hover {
            text-decoration: underline;
            color: #e63946;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #f1faee;
            border-bottom: 2px solid #e63946;
            padding-bottom: 10px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 0.9rem;
            color: #a8dadc;
        }
        .daman-recommendation {
            background-color: #f1faee;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.2rem;
            color: #1d3557;
        }
        .daman-highlight {
            font-weight: bold;
            color: #e63946;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .community-section {
                padding: 20px;
            }
        }
