* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #1e40af;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #fbbf24;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: #fbbf24;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: #fbbf24 !important;
            font-weight: bold;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
            z-index: 101;
        }
        .main-content {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #fbbf24;
            font-size: 2.7rem;
            margin-bottom: 25px;
            border-bottom: 4px solid #1e40af;
            padding-bottom: 12px;
            text-align: center;
        }
        h2 {
            color: #ffffff;
            font-size: 2.1rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #fbbf24;
        }
        h3 {
            color: #fbbf24;
            font-size: 1.6rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #38bdf8;
            text-shadow: 0 0 3px rgba(56, 189, 248, 0.3);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .download-btn {
            background-color: #ef4444;
        }
        .download-btn:hover {
            background-color: #dc2626;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
            border: 2px solid #fbbf24;
        }
        .stats-box {
            background-color: #1e293b;
            border-left: 6px solid #fbbf24;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .review {
            background-color: #1e293b;
            padding: 22px;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            border-top: 3px solid #fbbf24;
        }
        .reviewer {
            color: #94a3b8;
            font-style: italic;
            margin-top: 12px;
            font-size: 1rem;
        }
        .game-type {
            margin: 45px 0 25px;
        }
        .game-type a, .tags a {
            color: #38bdf8;
            text-decoration: none;
            margin-right: 18px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .game-type a:hover, .tags a:hover {
            color: #fbbf24;
        }
        .tags {
            margin: 25px 0 45px;
        }
        .footer {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 0 20px;
            border-top: 3px solid #1e40af;
            padding-top: 35px;
        }
        .copyright {
            margin-top: 35px;
            color: #94a3b8;
            font-size: 0.95rem;
            text-align: center;
        }
        .tips-box {
            background-color: rgba(56, 189, 248, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border: 1px dashed #38bdf8;
        }
        .tips-box h4 {
            color: #38bdf8;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .rank-badge {
            display: inline-block;
            width: 35px;
            height: 35px;
            background-color: #fbbf24;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            color: #0f172a;
            font-weight: bold;
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                margin: 10px 0;
                width: 100%;
                text-align: center;
            }
        }
