* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
            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: #ffffff;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        nav {
            transition: all 0.3s ease;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        nav ul li a.daman-link {
            background-color: #e67e22;
        }
        nav ul li a.daman-link:hover {
            background-color: #d35400;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin: 30px 0 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #16a085;
        }
        h2 {
            color: #27ae60;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #27ae60;
            position: relative;
            padding-left: 10px;
        }
        h2:before {
            content: "►";
            position: absolute;
            left: -15px;
            color: #e67e22;
        }
        h3 {
            color: #e67e22;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #e67e22;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s;
            font-size: 1.05rem;
            box-shadow: 0 4px 6px rgba(231,76,60,0.3);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(231,76,60,0.4);
        }
        .btn-login {
            background-color: #3498db;
            box-shadow: 0 4px 6px rgba(52,152,219,0.3);
        }
        .btn-login:hover {
            background-color: #2980b9;
            box-shadow: 0 6px 8px rgba(52,152,219,0.4);
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 40px 0;
            gap: 20px;
        }
        .stat-box {
            background-color: white;
            padding: 25px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            flex: 1;
            min-width: 200px;
            transition: transform 0.3s;
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #27ae60;
            margin-bottom: 10px;
        }
        .stat-text {
            color: #2c3e50;
            font-size: 1.05rem;
        }
        .tag-container {
            margin: 35px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #2980b9;
            transform: scale(1.05);
        }
        .game-type-nav {
            margin: 30px 0;
            padding: 15px;
            background-color: rgba(255,255,255,0.8);
            border-radius: 8px;
        }
        .game-type {
            display: inline-block;
            margin: 0 12px 10px 0;
            text-decoration: none;
            color: #2980b9;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.2s;
        }
        .game-type:hover {
            background-color: #2980b9;
            color: white;
        }
        blockquote {
            border-left: 4px solid #e67e22;
            padding: 15px 20px;
            margin: 25px 0;
            background-color: rgba(230,126,34,0.05);
            border-radius: 0 4px 4px 0;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #1abc9c;
            border-left-color: #1abc9c;
            margin-top: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        .daman-recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                margin-top: 15px;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 8px 0;
                width: 100%;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0;
            }
            h2 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.25rem;
                margin: 25px 0 12px;
            }
            .stat-number {
                font-size: 2rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px auto;
                width: 90%;
            }
        }
