* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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.6rem;
            font-weight: bold;
            color: #fbbf24;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        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 {
            color: #fbbf24;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1e3a8a;
            font-size: 2.3rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 3px solid #fbbf24;
            position: relative;
        }
        h1::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #3b82f6;
        }
        h2 {
            color: #1e3a8a;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fbbf24;
            position: relative;
        }
        h2::before {
            content: "•";
            color: #fbbf24;
            position: absolute;
            left: -20px;
            top: 5px;
        }
        h3 {
            color: #1e3a8a;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #3b82f6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
            min-width: 200px;
            display: inline-block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #10b981;
            color: white;
            border: 2px solid #10b981;
        }
        .download-btn:hover {
            background-color: white;
            color: #10b981;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #ef4444;
            color: white;
            border: 2px solid #ef4444;
        }
        .login-btn:hover {
            background-color: white;
            color: #ef4444;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            font-weight: bold;
            color: rgba(255,255,255,0.2);
            z-index: 1;
            pointer-events: none;
            rotate: -20deg;
        }
        .image-caption {
            margin-top: 15px;
            color: #666;
            font-size: 0.95rem;
            font-style: italic;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #3b82f6;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 15px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "—";
            margin-right: 10px;
            color: #3b82f6;
        }
        .tag-container {
            margin: 40px 0;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #dbeafe;
            color: #1e3a8a;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #bfdbfe;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 20px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #1e3a8a;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .game-type:hover {
            background-color: #dbeafe;
        }
        footer {
            background-color: #1e3a8a;
            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: #fbbf24;
            border-left-color: #fbbf24;
            margin-top: 0;
        }
        .daman-promo {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 0.9rem;
            color: #cbd5e1;
        }
        .feature-list {
            margin: 20px 0 30px 40px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .feature-list li::before {
            content: "✓";
            color: #10b981;
            font-weight: bold;
            position: absolute;
            left: -25px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 1.8rem;
                padding: 15px 0;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 20px;
            }
            h2::before {
                left: 0;
            }
            h3 {
                font-size: 1.25rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 10px;
            }
            .image-caption {
                max-width: 100%;
            }
            .review-box {
                padding: 15px;
            }
        }
