.td-mmo-gate {
    --cg-border: #e5e7eb;
    --cg-bg: #ffffff;
    --cg-card: #f8fafc;
    --cg-text: #0f172a;
    --cg-muted: #64748b;
    --cg-brand: #ee4d2d;
    --cg-brand-dark: #d83e21;
    --cg-radius: 14px;
    --cg-shadow: 0 8px 24px rgba(2, 8, 23, .06);
    background: var(--cg-card);
    border: 1px solid var(--cg-border);
    border-radius: var(--cg-radius);
    padding: 20px;
    margin: 24px auto;
    box-shadow: var(--cg-shadow);
    color: var(--cg-text);
}

.td-mmo-gate .row {
    text-align: center;
}

.td-mmo-gate .row h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.td-mmo-gate .row h3 {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.td-mmo-gate .row p {
    font-size: 14px;
    color: var(--cg-muted);
    margin: 0;
    text-align: center;
}

.td-mmo-gate .row .media {
    padding: 20px;
    margin: 10px;
}

.td-mmo-btn {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--cg-brand);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    letter-spacing: .2px;
    transition: background .15s ease, transform .1s ease;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .06) inset;
}

.td-mmo-btn:hover {
    background: var(--cg-brand-dark);
}

.td-mmo-btn:active {
    transform: translateY(1px);
}

@media (max-width: 640px) {
    .td-mmo-gate {
        padding: 16px;
    }

    .td-mmo-btn {
        height: 42px;
        min-width: 200px;
    }
}

.td-mmo-gate .row img {
    width: auto;
    height: 300px;
    display: block;
    margin: auto;
}