@charset "utf-8";

/* Steam 游戏卡 - 深浅色通用 */
.rxdw-steam-card {
    --rxdw-steam-bg: #1b2838;
    --rxdw-steam-bg2: #171a21;
    --rxdw-steam-text: #c7d5e0;
    --rxdw-steam-title: #ffffff;
    --rxdw-steam-border: rgba(199, 213, 224, 0.18);
    --rxdw-steam-action-bg: rgba(23, 26, 33, 0.85);
    --rxdw-steam-action-border: #4c6b22;
    --rxdw-steam-action-text: #beee11;
    --rxdw-steam-buy-bg: #5c7e10;
    --rxdw-steam-buy-hover: #6fa113;
    --rxdw-steam-price-bg: #000000;
    margin: 1rem 0;
    max-width: 100%;
    font-family: "Motiva Sans", "Segoe UI", "Microsoft YaHei", sans-serif;
}

.light-style .rxdw-steam-card,
[data-bs-theme=light] .rxdw-steam-card {
    --rxdw-steam-bg: #f3f6f9;
    --rxdw-steam-bg2: #e8edf2;
    --rxdw-steam-text: #3d4450;
    --rxdw-steam-title: #171a21;
    --rxdw-steam-border: rgba(23, 26, 33, 0.12);
    --rxdw-steam-action-bg: #ffffff;
    --rxdw-steam-action-border: #5c7e10;
    --rxdw-steam-action-text: #4c6b22;
    --rxdw-steam-buy-bg: #5c7e10;
    --rxdw-steam-buy-hover: #4c6b22;
    --rxdw-steam-price-bg: #171a21;
}

.rxdw-steam-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.rxdw-steam-card__action {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none !important;
    color: var(--rxdw-steam-action-text) !important;
    background: var(--rxdw-steam-action-bg);
    border: 1px solid var(--rxdw-steam-action-border);
    border-radius: 2px;
    white-space: nowrap;
}

.rxdw-steam-card__action:hover {
    filter: brightness(1.08);
}

.rxdw-steam-card__body {
    background: linear-gradient(135deg, var(--rxdw-steam-bg) 0%, var(--rxdw-steam-bg2) 100%);
    border: 1px solid var(--rxdw-steam-border);
    border-radius: 4px;
    padding: 16px;
    color: var(--rxdw-steam-text);
}

.rxdw-steam-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.rxdw-steam-card__title {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--rxdw-steam-title);
    line-height: 1.3;
}

.rxdw-steam-card__subtitle {
    font-size: 0.85rem;
    color: var(--rxdw-steam-text);
    opacity: 0.85;
    margin-top: 4px;
}

.rxdw-steam-card__logo {
    flex: 0 0 auto;
    color: var(--rxdw-steam-text);
    opacity: 0.75;
}

.rxdw-steam-card__content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rxdw-steam-card__cover {
    width: 184px;
    max-width: 38%;
    height: auto;
    border-radius: 2px;
    flex: 0 0 auto;
}

.rxdw-steam-card__desc {
    flex: 1;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--rxdw-steam-text);
}

.rxdw-steam-card__buy {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 0;
}

.rxdw-steam-card__price {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    background: var(--rxdw-steam-price-bg);
    color: #fff;
    font-size: 0.95rem;
    border-radius: 2px 0 0 2px;
}

.rxdw-steam-card__buy-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: linear-gradient(to bottom, var(--rxdw-steam-buy-bg) 5%, var(--rxdw-steam-buy-hover) 95%);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    border-radius: 0 2px 2px 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.rxdw-steam-card__buy-btn:hover {
    filter: brightness(1.06);
}

@media (max-width: 768px) {
    .rxdw-steam-card__content {
        flex-direction: column;
    }
    .rxdw-steam-card__cover {
        width: 100%;
        max-width: 100%;
    }
    .rxdw-steam-card__buy {
        flex-direction: column;
        align-items: stretch;
    }
    .rxdw-steam-card__price {
        justify-content: center;
        border-radius: 2px 2px 0 0;
    }
    .rxdw-steam-card__buy-btn {
        justify-content: center;
        border-radius: 0 0 2px 2px;
    }
}

.mce-content-body .rxdw-steam-card {
    max-width: 100%;
}

/* Steam 官方嵌入卡片 */
.rxdw-steam-widget {
    margin: 1rem 0;
    max-width: 100%;
    overflow-x: auto;
}

.rxdw-steam-widget iframe {
    display: block;
    max-width: 100%;
    border: 0;
}

.mce-content-body .rxdw-steam-widget {
    max-width: 100%;
}
