* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #0f3460;
            color: #e94560;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffdf00;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #ffdf00;
            background-color: rgba(255,255,255,0.1);
        }
        .daman-link {
            color: #4cc9f0 !important;
            font-weight: bold;
            border: 1px solid #4cc9f0;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ffdf00;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ffdf00;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #e94560;
            padding-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            color: #4cc9f0;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 4px solid #e94560;
        }
        h3 {
            color: #ffdf00;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: "⚔️";
            margin-right: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #f0f0f5;
        }
        .highlight {
            font-weight: bold;
            color: #e94560;
            text-shadow: 0 0 3px rgba(233,69,96,0.3);
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        .btn {
            padding: 18px 35px;
            background-color: #e94560;
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 6px 12px rgba(233,69,96,0.3);
        }
        .btn:hover {
            background-color: #d00036;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(233,69,96,0.4);
        }
        .download-btn {
            background-color: #4cc9f0;
            box-shadow: 0 6px 12px rgba(76,201,240,0.3);
        }
        .download-btn:hover {
            background-color: #3aabd0;
            box-shadow: 0 8px 16px rgba(76,201,240,0.4);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .stats-item span:first-child {
            color: #4cc9f0;
            font-weight: 500;
        }
        .stats-item span:last-child {
            color: #ffdf00;
            font-weight: bold;
        }
        .review {
            background-color: rgba(22,33,62,0.8);
            border-left: 5px solid #ffdf00;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .reviewer {
            font-style: italic;
            color: #4cc9f0;
            margin-top: 15px;
            font-size: 1rem;
        }
        .guide-tip {
            background-color: rgba(22,33,62,0.6);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            position: relative;
            border: 1px solid rgba(76,201,240,0.2);
        }
        .guide-tip::before {
            content: "📜";
            font-size: 1.8rem;
            position: absolute;
            top: 20px;
            left: 20px;
        }
        .guide-tip p {
            margin-left: 50px;
        }
        footer {
            background-color: #0f3460;
            color: #f0f0f5;
            padding: 50px 20px;
            margin-top: 80px;
            border-top: 3px solid #e94560;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffdf00;
            border-bottom: 2px solid rgba(255,223,0,0.3);
            padding-bottom: 10px;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a, .tag-links a {
            color: #f0f0f5;
            text-decoration: none;
            background-color: #16213e;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #e94560;
            transform: translateY(-2px);
            border-color: #e94560;
        }
        .promo-text {
            margin: 40px 0;
            font-size: 1.2rem;
            line-height: 1.8;
            background-color: rgba(255,223,0,0.1);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ffdf00;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #bbb;
        }
        ul {
            margin: 20px 0 30px 40px;
        }
        ul li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0f3460;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 10px;
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
            }
            .stats-box {
                padding: 20px;
            }
            .guide-tip p {
                margin-left: 40px;
            }
        }
