/* ============================================
   GLHF Premium Services — Frontend Styles
   ============================================ */

.ps-page {
    min-height: 80vh;
    padding-top: var(--glhf-header-height) !important;
    padding-bottom: 4rem;
}

.ps-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ps-layout {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.ps-sidebar {
    position: sticky;
    top: calc(var(--glhf-header-height) + 24px);
}

.ps-main {
    min-width: 0;
}

/* ── Hero ──────────────────────────────────────── */

.ps-hero {
    position: relative;
    text-align: center;
    padding: 3.5rem 1rem 2.5rem;
    overflow: hidden;
}

.ps-hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    width: 600px;
    height: 350px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(var(--glhf-accent-rgb), 0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: psHeroGlow 6s ease-in-out infinite alternate;
}

@keyframes psHeroGlow {
    0%   { opacity: .5; transform: translateX(-50%) scale(1); }
    100% { opacity: 1;  transform: translateX(-50%) scale(1.15); }
}

.ps-hero-title {
    font-family: var(--glhf-font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--glhf-text-primary, #ffffff);
    letter-spacing: -.02em;
    margin-bottom: .35rem;
    position: relative;
}

.ps-hero-sub {
    color: var(--glhf-text-muted);
    font-size: 1.05rem;
    position: relative;
}

/* ── Tabs ──────────────────────────────────────── */

.ps-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
        rgba(8, 12, 16, .75);
    border-radius: calc(var(--glhf-radius-lg) + 4px);
    padding: 12px;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 24px 60px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
}

.ps-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1rem;
    border: none;
    background: rgba(255,255,255,.02);
    border-radius: var(--glhf-radius-md);
    color: var(--glhf-text-muted);
    font-family: var(--glhf-font-heading);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all var(--glhf-transition);
    position: relative;
    border: 1px solid rgba(255,255,255,.05);
    min-height: 78px;
}

.ps-tab:hover {
    color: var(--glhf-text-secondary);
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.1);
    transform: translateX(2px);
}

.ps-tab--active {
    background:
        linear-gradient(135deg, rgba(var(--glhf-accent-rgb), .16), rgba(167, 139, 250, .12)),
        rgba(255,255,255,.03);
    color: var(--glhf-text-primary);
    box-shadow: 0 0 24px rgba(var(--glhf-accent-rgb), .12);
    border-color: rgba(var(--glhf-accent-rgb), .24);
}

.ps-tab-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.ps-tab--active .ps-tab-icon {
    background: rgba(var(--glhf-accent-rgb), .16);
    color: var(--glhf-accent);
}

.ps-tab-icon--success {
    background: rgba(34, 197, 94, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(34, 197, 94, 0.2), 0 0 12px rgba(34, 197, 94, 0.1) !important;
}

.ps-tab-icon--alert {
    background: rgba(239, 68, 68, 0.14) !important;
    box-shadow: inset 0 1px 0 rgba(239, 68, 68, 0.2), 0 0 15px rgba(239, 68, 68, 0.25) !important;
    animation: psIconPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes psIconPulse {
    0%, 100% { transform: scale(1); box-shadow: inset 0 1px 0 rgba(239, 68, 68, 0.2), 0 0 15px rgba(239, 68, 68, 0.25) !important; }
    50% { transform: scale(1.08); box-shadow: inset 0 1px 0 rgba(239, 68, 68, 0.2), 0 0 25px rgba(239, 68, 68, 0.4) !important; }
}

.ps-tab-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ps-tab-label {
    white-space: nowrap;
    line-height: 1.1;
}

.ps-tab-desc {
    font-family: var(--glhf-font-body);
    font-size: .82rem;
    font-weight: 500;
    color: var(--glhf-text-muted);
    line-height: 1.35;
}

.ps-tab--active .ps-tab-desc {
    color: var(--glhf-text-secondary);
}

/* ── Service Card (hero) ──────────────────────── */

.ps-card {
    position: relative;
    border-radius: var(--glhf-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ps-card--hero {
    background: linear-gradient(145deg,
        rgba(var(--glhf-accent-rgb), .10) 0%,
        rgba(120, 80, 220, .08) 50%,
        rgba(15, 20, 25, .95) 100%
    );
    border: 1px solid rgba(var(--glhf-accent-rgb), .15);
    padding: 2rem 2rem 1.8rem;
}

.ps-card--juggernaut {
    background: linear-gradient(145deg,
        rgba(239, 68, 68, .10) 0%,
        rgba(168, 85, 247, .08) 50%,
        rgba(15, 20, 25, .95) 100%
    );
    border-color: rgba(239, 68, 68, .18);
}

.ps-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
    animation: psCardShine 6s ease-in-out infinite;
}

@keyframes psCardShine {
    0%, 100% { left: -100%; }
    50%      { left: 150%; }
}

.ps-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ps-card-left { flex: 1; min-width: 0; }

.ps-card-right {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
}

.ps-card-title {
    font-family: var(--glhf-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--glhf-text-primary);
    margin-bottom: .5rem;
}

.ps-card-desc {
    color: var(--glhf-text-secondary);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Details Accordion ────────────────────────── */

.ps-card-details {
    margin-top: 0.85rem;
    text-align: left;
}

.ps-card-details-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--glhf-accent);
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: color 0.2s ease;
}

.ps-card-details-toggle:hover {
    color: #fff;
}

.ps-card-details-toggle::-webkit-details-marker {
    display: none;
}

.ps-card-details-toggle svg {
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
}

.ps-card-details[open] .ps-card-details-toggle svg {
    transform: rotate(180deg);
}

.ps-card-details-content {
    margin-top: 1rem;
    text-align: left;
    animation: psFadeIn 0.3s ease;
}

@keyframes psFadeIn {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: translateY(0); }
}

.ps-card-details-content h5 {
    font-size: 0.85rem;
    color: var(--glhf-text-primary);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.ps-card-details-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ps-card-details-content li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.85rem;
    color: var(--glhf-text-secondary);
    line-height: 1.5;
}

.ps-card-details-content li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 1.1rem;
    color: var(--glhf-accent);
    line-height: 1.2;
}

.ps-card-details-content li strong {
    color: #fff;
    font-weight: 600;
}

.ps-card-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin: 0;
    padding: 0;
}

/* ── Price Badge ──────────────────────────────── */

.ps-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .6rem 1.4rem;
    border-radius: var(--glhf-radius-full);
    background: linear-gradient(135deg, rgba(var(--glhf-accent-rgb), .18), rgba(var(--glhf-accent-rgb), .06));
    border: 1px solid rgba(var(--glhf-accent-rgb), .25);
    margin-bottom: .8rem;
}

.ps-price-badge--jug {
    background: linear-gradient(135deg, rgba(239, 68, 68, .18), rgba(168, 85, 247, .06));
    border-color: rgba(239, 68, 68, .25);
}

.ps-price-emerald {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.ps-price-amount {
    font-family: var(--glhf-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--glhf-text-primary);
}

.ps-balance-info {
    font-size: .9rem;
    color: var(--glhf-text-muted);
}

.ps-balance-emerald {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    margin-left: 2px;
}

.ps-topup-hint {
    margin: -.25rem 0 0;
    font-size: .92rem;
    color: var(--glhf-text-muted);
}

.ps-topup-hint a {
    color: var(--glhf-accent);
    font-weight: 600;
    text-decoration: none;
}

.ps-topup-hint a:hover {
    text-decoration: underline;
}

/* ── Alerts ───────────────────────────────────── */

.ps-alert {
    display: flex;
    gap: 12px;
    padding: 1rem 1.2rem;
    border-radius: var(--glhf-radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.ps-alert--danger {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .2);
}

.ps-alert--info {
    background: rgba(59, 130, 246, .08);
    border-color: rgba(59, 130, 246, .2);
}

.ps-alert--warning {
    background: rgba(245, 158, 11, .08);
    border-color: rgba(245, 158, 11, .2);
}

.ps-alert--success {
    background: rgba(var(--glhf-accent-rgb), .08);
    border-color: rgba(var(--glhf-accent-rgb), .2);
}

.ps-alert--completed {
    background: rgba(14, 165, 233, .08);
    border-color: rgba(14, 165, 233, .2);
}

.ps-alert-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.4; }
.ps-alert p { margin: .3rem 0 0; color: var(--glhf-text-secondary); font-size: .9rem; }
.ps-alert strong { color: var(--glhf-text-primary); }
.ps-alert a { color: var(--glhf-accent); }

/* ── Steam link CTA ──────────────────────────── */

.ps-steam-link-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 1.35rem 1.5rem;
    margin: 0 0 1.5rem;
    border-radius: var(--glhf-radius-lg);
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(23, 107, 177, .18), transparent 60%),
        linear-gradient(135deg, rgba(23, 107, 177, .10) 0%, rgba(0, 0, 0, .18) 100%);
    border: 1px solid rgba(23, 107, 177, .35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 8px 24px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}

.ps-steam-link-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(23, 107, 177, .6), transparent 40%);
    opacity: .25;
    pointer-events: none;
}

.ps-steam-link-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e6f0fb;
    background: linear-gradient(135deg, #1b2838, #176bb1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 6px 18px rgba(23, 107, 177, .35);
    position: relative;
    z-index: 1;
}

.ps-steam-link-card__content {
    position: relative;
    z-index: 1;
}

.ps-steam-link-card__title {
    margin: 0 0 .35rem;
    font-family: var(--glhf-font-heading, inherit);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--glhf-text-primary);
}

.ps-steam-link-card__desc {
    margin: 0;
    color: var(--glhf-text-secondary);
    font-size: .95rem;
    line-height: 1.5;
}

.ps-steam-link-card__link {
    color: var(--glhf-accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: color .15s ease, border-color .15s ease;
}

.ps-steam-link-card__link:hover,
.ps-steam-link-card__link:focus {
    color: var(--glhf-text-primary);
    border-bottom-color: var(--glhf-text-primary);
}

@media (max-width: 540px) {
    .ps-steam-link-card { flex-direction: column; text-align: center; }
    .ps-steam-link-card__icon { width: 48px; height: 48px; }
}

/* ── Approval notice (manual admin review info) ─ */

.ps-approval-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(0, 255, 100, 0.07), rgba(0, 204, 163, 0.04)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 255, 100, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 18px rgba(0, 0, 0, 0.2);
}

.ps-approval-notice__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00ff9c;
    background: radial-gradient(circle at 50% 40%, rgba(0, 255, 100, 0.22), rgba(0, 255, 100, 0.06) 70%);
    box-shadow: inset 0 0 0 1px rgba(0, 255, 100, 0.3);
    margin-top: 2px;
}

.ps-approval-notice__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--glhf-text, #d8f0d3);
}

@media (max-width: 540px) {
    .ps-approval-notice { padding: 12px 14px; }
    .ps-approval-notice__icon { width: 32px; height: 32px; }
    .ps-approval-notice__text { font-size: 0.88rem; }
}

/* ── Form ─────────────────────────────────────── */

.ps-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ps-form-group { display: flex; flex-direction: column; gap: .4rem; }

.ps-label {
    font-family: var(--glhf-font-heading);
    font-weight: 600;
    font-size: .85rem;
    color: var(--glhf-text-secondary);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ps-input {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--glhf-radius-md);
    padding: .75rem 1rem;
    color: var(--glhf-text-primary);
    font-size: .95rem;
    font-family: var(--glhf-font-body);
    transition: border-color var(--glhf-transition);
    outline: none;
}

.ps-input:focus {
    border-color: rgba(var(--glhf-accent-rgb), .4);
    box-shadow: 0 0 0 3px rgba(var(--glhf-accent-rgb), .08);
}

.ps-textarea { resize: vertical; min-height: 80px; }

/* Toggle row */

.ps-toggle-row { display: flex; gap: 4px; }

.ps-toggle {
    flex: 1;
    padding: .55rem .8rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--glhf-radius-sm);
    background: transparent;
    color: var(--glhf-text-muted);
    font-size: .9rem;
    cursor: pointer;
    transition: all var(--glhf-transition);
}

.ps-toggle:hover { border-color: rgba(255,255,255,.2); color: var(--glhf-text-secondary); }

.ps-toggle--active {
    background: rgba(var(--glhf-accent-rgb), .1);
    border-color: rgba(var(--glhf-accent-rgb), .3);
    color: var(--glhf-accent);
}

/* Dropzone */

.ps-dropzone {
    border: 2px dashed rgba(255,255,255,.12);
    border-radius: var(--glhf-radius-md);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--glhf-transition);
    position: relative;
}

.ps-dropzone:hover,
.ps-dropzone.dragover {
    border-color: rgba(var(--glhf-accent-rgb), .3);
    background: rgba(var(--glhf-accent-rgb), .04);
}

.ps-dropzone-icon { font-size: 2rem; display: block; margin-bottom: .5rem; opacity: .6; }
.ps-dropzone-text { color: var(--glhf-text-secondary); font-size: .9rem; }
.ps-dropzone-link { color: var(--glhf-accent); cursor: pointer; text-decoration: underline; }
.ps-dropzone-hint { color: var(--glhf-text-muted); font-size: .8rem; margin-top: .3rem; }

.ps-dropzone-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: .5rem;
}

.ps-dropzone-filename {
    color: var(--glhf-accent);
    font-weight: 600;
}

.ps-dropzone-remove {
    background: rgba(239, 68, 68, .15);
    border: none;
    color: #ef4444;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Buttons ──────────────────────────────────── */

.ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .7rem 1.5rem;
    border-radius: var(--glhf-radius-md);
    font-family: var(--glhf-font-heading);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all var(--glhf-transition);
    text-decoration: none;
}

.ps-btn--primary {
    background: linear-gradient(135deg, var(--glhf-accent), #059650);
    color: #000;
    box-shadow: 0 4px 20px rgba(var(--glhf-accent-rgb), .25);
}

.ps-btn--primary:hover:not(:disabled) {
    box-shadow: 0 6px 30px rgba(var(--glhf-accent-rgb), .4);
    transform: translateY(-1px);
}

.ps-btn--juggernaut {
    background: linear-gradient(135deg, #ef4444, #a855f7);
    box-shadow: 0 4px 20px rgba(239, 68, 68, .25);
}

.ps-btn--juggernaut:hover:not(:disabled) {
    box-shadow: 0 6px 30px rgba(239, 68, 68, .4);
    transform: translateY(-1px);
}

.ps-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: var(--glhf-text-secondary);
}

.ps-btn--outline:hover { border-color: rgba(255,255,255,.3); color: var(--glhf-text-primary); }

.ps-btn--sm { padding: .45rem 1rem; font-size: .85rem; }
.ps-btn--lg { padding: .9rem 2rem; font-size: 1rem; width: 100%; }

.ps-btn:disabled,
.ps-btn--disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
    filter: grayscale(.25);
}

/* ── Steam cards ──────────────────────────────── */

.ps-steam-cards { display: flex; flex-direction: column; gap: 8px; }

.ps-steam-card {
    cursor: pointer;
}

.ps-steam-card input { display: none; }

.ps-steam-card-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: .8rem 1rem;
    border-radius: var(--glhf-radius-md);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    transition: all var(--glhf-transition);
}

.ps-steam-card input:checked + .ps-steam-card-inner {
    border-color: rgba(var(--glhf-accent-rgb), .4);
    background: rgba(var(--glhf-accent-rgb), .06);
    box-shadow: 0 0 16px rgba(var(--glhf-accent-rgb), .08);
}

.ps-steam-card:hover .ps-steam-card-inner {
    border-color: rgba(255,255,255,.18);
}

.ps-steam-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--glhf-radius-sm);
    object-fit: cover;
}

.ps-steam-name {
    display: block;
    color: var(--glhf-text-primary);
    font-weight: 600;
    font-size: .95rem;
}

.ps-steam-nick {
    display: block;
    color: var(--glhf-text-muted);
    font-size: .8rem;
}

/* ── Admin Section ────────────────────────────── */

.ps-admin-section {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.ps-admin-title {
    font-family: var(--glhf-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--glhf-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.ps-admin-title-icon { font-size: 1.1rem; }

.ps-admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: var(--glhf-radius-full);
    background: #ef4444;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.ps-admin-filters {
    display: inline-flex;
    padding: 6px;
    gap: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
}

.ps-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--glhf-text-secondary);
    font-family: var(--glhf-font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ps-filter:hover { 
    color: var(--glhf-text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.ps-filter--active,
.ps-filter--active:hover {
    background: rgba(var(--glhf-accent-rgb), 0.15);
    color: var(--glhf-accent);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ps-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    margin-left: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.ps-filter--active .ps-filter-count {
    background: var(--glhf-accent);
    color: #000;
    box-shadow: 0 0 8px rgba(var(--glhf-accent-rgb), 0.4);
}

/* Admin request cards */

.ps-admin-list { display: flex; flex-direction: column; gap: 10px; }
.ps-admin-loading { color: var(--glhf-text-muted); text-align: center; padding: 2rem; }

.ps-admin-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--glhf-radius-md);
    padding: 1rem 1.2rem;
    transition: border-color var(--glhf-transition);
}

.ps-admin-card:hover { border-color: rgba(255,255,255,.15); }

.ps-admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .6rem;
    flex-wrap: wrap;
    gap: 6px;
}

.ps-admin-card-user {
    font-weight: 600;
    color: var(--glhf-text-primary);
}

.ps-admin-card-type {
    font-size: .8rem;
    padding: .2rem .6rem;
    border-radius: var(--glhf-radius-full);
    background: rgba(var(--glhf-accent-rgb), .1);
    color: var(--glhf-accent);
}

.ps-admin-card-type--jug {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

.ps-admin-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.2rem;
    font-size: .85rem;
    color: var(--glhf-text-muted);
    margin-bottom: .6rem;
}

.ps-admin-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.ps-inline-emerald {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    object-fit: contain;
}

.ps-admin-card-meta strong { color: var(--glhf-text-secondary); }

.ps-admin-card-comment {
    font-size: .9rem;
    color: var(--glhf-text-secondary);
    background: rgba(0,0,0,.2);
    padding: .5rem .8rem;
    border-radius: var(--glhf-radius-sm);
    margin-bottom: .8rem;
}

.ps-admin-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ps-admin-btn {
    padding: .45rem 1rem;
    border-radius: var(--glhf-radius-sm);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--glhf-transition);
}

.ps-admin-btn--accept {
    background: rgba(var(--glhf-accent-rgb), .15);
    color: var(--glhf-accent);
}

.ps-admin-btn--accept:hover {
    background: rgba(var(--glhf-accent-rgb), .25);
}

.ps-admin-btn--reject {
    background: rgba(239, 68, 68, .12);
    color: #ef4444;
}

.ps-admin-btn--reject:hover {
    background: rgba(239, 68, 68, .22);
}

.ps-admin-btn--complete {
    background: rgba(14, 165, 233, .15);
    color: #0ea5e9;
}

.ps-admin-btn--complete:hover {
    background: rgba(14, 165, 233, .25);
}

.ps-admin-btn--delete {
    background: rgba(239, 68, 68, .12);
    color: #ef4444;
}

.ps-admin-btn--delete:hover {
    background: rgba(239, 68, 68, .22);
}

.ps-admin-btn--download {
    background: rgba(59, 130, 246, .12);
    color: #3b82f6;
}

.ps-admin-btn--download:hover {
    background: rgba(59, 130, 246, .22);
}

/* VT status dots */

.ps-vt-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.ps-vt-dot--clean    { background: #22c55e; }
.ps-vt-dot--infected { background: #ef4444; }
.ps-vt-dot--pending  { background: #f59e0b; }
.ps-vt-dot--error    { background: #6b7280; }
.ps-vt-dot--skipped  { background: #94a3b8; }

/* ── Status chips ─────────────────────────────── */

.ps-status {
    display: inline-block;
    padding: .15rem .55rem;
    border-radius: var(--glhf-radius-full);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.ps-status--pending  { background: rgba(245, 158, 11, .15); color: #f59e0b; }
.ps-status--scanning { background: rgba(59, 130, 246, .15); color: #3b82f6; }
.ps-status--accepted { background: rgba(var(--glhf-accent-rgb), .15); color: var(--glhf-accent); }
.ps-status--rejected { background: rgba(239, 68, 68, .15); color: #ef4444; }
.ps-status--completed { background: rgba(14, 165, 233, .15); color: #0ea5e9; }
.ps-status--cancelled { background: rgba(107, 114, 128, .15); color: #6b7280; }

/* ── Toast ────────────────────────────────────── */

.ps-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: .65rem 1.4rem;
    border-radius: var(--glhf-radius-full);
    font-size: .9rem;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
}

.ps-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ps-toast--success { background: rgba(var(--glhf-accent-rgb), .2); color: var(--glhf-accent); border: 1px solid rgba(var(--glhf-accent-rgb), .3); backdrop-filter: blur(12px); }
.ps-toast--error   { background: rgba(239, 68, 68, .2); color: #ef4444; border: 1px solid rgba(239, 68, 68, .3); backdrop-filter: blur(12px); }

/* ── Responsive ───────────────────────────────── */

/* ── Tabs as anchors ──────────────────────────── */

.ps-tab { text-decoration: none; }

/* ==========================================================================
   STREAM PLAYER (FLOATING & THEATER)
   ========================================================================== */
.ps-stream-player {
    position: fixed;
    z-index: 9999;
    top: 90px;
    right: 20px;
    width: 320px;
    display: none; /* By default overridden by inline flex */
    flex-direction: column;
    background: rgba(14, 15, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 100, 0.15);
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.1s ease-out;
}

.ps-stream-player::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 100, 0.4), transparent);
    z-index: 10;
}

.ps-player-header {
    height: 36px;
    background: linear-gradient(180deg, rgba(20, 22, 28, 0.8) 0%, rgba(14, 15, 20, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 12px;
    cursor: grab;
    user-select: none;
    flex-shrink: 0;
}

.ps-player-header:active {
    cursor: grabbing;
}

.ps-player-drag {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 12px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.ps-player-header:hover .ps-player-drag {
    color: rgba(0, 255, 100, 0.6);
}

.ps-player-title {
    flex-grow: 1;
    font-family: 'Enerhodar', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 10px rgba(0, 255, 100, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ps-player-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #FF3366;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 51, 102, 0.8);
    animation: psLivePulse 2s infinite;
}

@keyframes psLivePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.ps-player-controls {
    display: flex;
    gap: 8px;
}

.ps-btn-state {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-btn-state:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ps-player-port {
    flex-grow: 1;
    background: #000;
    position: relative;
    width: 100%;
    height: 100%;
}

.ps-player-port iframe,
#psTheaterContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* States */
.ps-stream-player.state-none {
    display: none !important;
}

.ps-stream-player.state-theater {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    resize: none !important;
}
.ps-stream-player.state-theater .ps-player-header {
    display: none !important;
}

.ps-stream-player .ps-player-title {
    color: #00ff64;
    font-weight: bold;
}
/* Make iframe full width in theater since header is hidden */
.ps-stream-player.state-theater .ps-player-port {
    height: 100% !important;
}

/* Active Viewer (2x Widget) */
.ps-stream-player.state-active {
    width: 960px;
    height: 580px;
}

.ps-stream-player.state-mini {
    width: 320px;
    height: 220px;
}

.ps-stream-player.state-widget {
    width: 480px;
    height: 310px;
}

.ps-stream-player.state-fullscreen {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: none !important;
    border-radius: 0;
    border: none;
}

body.ps-stream-fullscreen-active {
    overflow: hidden !important;
}

/* Hide header in fullscreen if idle */
.ps-stream-player.state-fullscreen .ps-player-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    border: none;
}

.ps-stream-player.state-fullscreen:hover .ps-player-header {
    opacity: 1;
}

/* Active control visual */
.ps-stream-player.state-mini .ps-btn-state[data-state="mini"],
.ps-stream-player.state-widget .ps-btn-state[data-state="widget"],
.ps-stream-player.state-active .ps-btn-state[data-state="active"] {
    color: #00ff64;
    background: rgba(0, 255, 100, 0.1);
    box-shadow: inset 0 0 0 1px rgba(0, 255, 100, 0.2);
}

/* ==========================================================================
   CHAT PANEL (was inline styles in template-stream-chat.php)
   ========================================================================== */
.ps-panel--chat {
    display: flex !important;
    flex-direction: column;
    height: calc(100dvh - var(--glhf-header-height, 72px) - 160px);
    min-height: min(600px, 70dvh);
}

/* Generic hide-panel class used by premium-services.js instead of
   inline `style.display`, which was clobbering flex-column for chat. */
.ps-panel--hidden { display: none !important; }

/* Premium Glitch Tab Switching Animation */
@keyframes psGlitchIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
        filter: drop-shadow(20px 0 0 rgba(255, 0, 85, 1)) drop-shadow(-20px 0 0 rgba(0, 255, 255, 1)) contrast(1.5) brightness(1.2);
    }
    10% {
        opacity: 1;
        /* Єдиний різкий розрив (slice) посередині екрану */
        clip-path: inset(40% 0 45% 0);
        transform: translate(-15px, 0) scale(1.02);
        filter: drop-shadow(-15px 0 0 rgba(255, 0, 85, 1)) drop-shadow(15px 0 0 rgba(0, 255, 255, 1));
    }
    15% {
        /* Миттєве відновлення цілісності блоку */
        clip-path: inset(0 0 0 0);
        transform: translate(8px, 0) scale(1);
        filter: drop-shadow(8px 0 0 rgba(255, 0, 85, 0.8)) drop-shadow(-8px 0 0 rgba(0, 255, 255, 0.8));
    }
    20% {
        transform: translate(-3px, 0);
        filter: drop-shadow(-4px 0 0 rgba(255, 0, 85, 0.5)) drop-shadow(4px 0 0 rgba(0, 255, 255, 0.5));
    }
    25% {
        transform: translate(0);
        filter: none;
    }
    100% {
        opacity: 1;
        transform: none;
        clip-path: none;
        filter: none;
    }
}

.ps-panel--active {
    animation: psGlitchIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ==========================================================================
   THEATER PANEL (extracted from template-stream-chat.php inline)
   ========================================================================== */
.ps-panel--theater {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.ps-theater-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.ps-theater-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.ps-theater-btn {
    width: auto;
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
}

.ps-panel--chat {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* ==========================================================================
   RESPONSIVE LAYOUT — unified breakpoints 1024 / 768 / 480
   ========================================================================== */

@media (max-width: 1280px) {
    .ps-layout { grid-template-columns: 340px minmax(0, 1fr); }
}

@media (max-width: 1024px) {
    .ps-container { padding: 0 1rem; }
    .ps-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 1.25rem;
    }
    .ps-tab { padding: .85rem; min-height: 68px; }
    .ps-tab-icon { width: 38px; height: 38px; border-radius: 12px; }
    .ps-tab-desc { font-size: .78rem; }
    .ps-card--hero { padding: 1.75rem 1.5rem; }
    .ps-card-title { font-size: 1.45rem; }
    .ps-stream-player.state-active { width: min(720px, calc(100vw - 32px)); height: auto; aspect-ratio: 16/9; }
    .ps-stream-player.state-widget { width: min(440px, calc(100vw - 32px)); height: auto; aspect-ratio: 16/9; }
    .ps-stream-player.state-mini { width: min(300px, calc(100vw - 32px)); height: auto; aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
    .ps-page { padding-bottom: 2.5rem; }
    .ps-hero { padding: 2rem 1rem 1.5rem; }
    .ps-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ps-sidebar {
        position: static;
        top: auto;
        overflow-x: auto;
    }

    /* Tabs scroll horizontally */
    .ps-tabs {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: .5rem;
        padding: 10px;
    }
    .ps-tab {
        flex: 0 0 auto;
        min-height: auto;
        padding: .7rem .9rem;
        scroll-snap-align: start;
        min-width: 0;
    }
    .ps-tab:hover { transform: none; }
    .ps-tab-desc { display: none; }
    .ps-tab-icon { width: 34px; height: 34px; border-radius: 10px; font-size: 1rem; }
    .ps-tab-label { font-size: .85rem; }

    /* Hero card stacks */
    .ps-card-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .ps-card-right {
        align-items: flex-start;
        text-align: left;
    }
    .ps-card--hero { padding: 1.25rem 1.25rem 1.1rem; }
    .ps-card-title { font-size: 1.3rem; }
    .ps-price-amount { font-size: 1.3rem; }

    /* Chat panel — tighten for mobile viewport */
    .ps-panel--chat {
        height: calc(100dvh - var(--glhf-header-height, 56px) - 100px);
        min-height: 480px;
    }

    /* Theater controls stack nicer */
    .ps-theater-controls {
        justify-content: stretch;
    }
    .ps-theater-controls > * { flex: 1 1 auto; }

    /* Form + inputs */
    .ps-form { gap: 1rem; }
    .ps-form-group { gap: .3rem; }
    .ps-input { padding: .65rem .85rem; font-size: .95rem; }

    /* Stream player — full-width minus small gutters */
    .ps-stream-player.state-active,
    .ps-stream-player.state-widget {
        width: calc(100vw - 16px) !important;
        max-width: 100vw;
        height: auto !important;
        aspect-ratio: 16/9;
        right: 8px !important;
        left: 8px !important;
        top: calc(var(--glhf-header-height, 56px) + 8px) !important;
    }
    .ps-stream-player.state-mini {
        width: calc(60vw) !important;
        max-width: 260px;
        height: auto !important;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .ps-container { padding: 0 .75rem; }
    .ps-hero { padding: 1.5rem .75rem 1rem; }
    .ps-hero-title { font-size: 1.6rem; }
    .ps-hero-sub { font-size: .95rem; }
    .ps-card--hero { padding: 1rem; border-radius: var(--glhf-radius-md); }
    .ps-card-title { font-size: 1.15rem; }
    .ps-card-desc { font-size: .9rem; }
    .ps-price-badge { padding: .45rem 1rem; }
    .ps-price-amount { font-size: 1.2rem; }

    .ps-tab { padding: .6rem .75rem; }
    .ps-tab-icon { width: 30px; height: 30px; }

    .ps-form, .ps-dropzone { padding: 0; }

    /* Floating player mini state even smaller on phones */
    .ps-stream-player.state-mini {
        width: calc(85vw) !important;
        max-width: 320px;
    }
}

/* ==========================================================================
   ADMIN FILTERS — wrap on narrow screens
   ========================================================================== */
.ps-admin-filters {
    flex-wrap: wrap !important;
}
@media (max-width: 768px) {
    .ps-admin-filters > * { flex: 1 1 140px; }
}

/* ==========================================================================
   STEAM CARDS — single column on tiny screens
   ========================================================================== */
@media (max-width: 480px) {
    .ps-steam-cards { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   PAYMENT CHOICE — emeralds / card selector
   ========================================================================== */
.ps-payment-choice {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--glhf-radius-md, 12px);
}
.ps-payment-choice__label {
    font-size: .8rem;
    opacity: .65;
    margin: 0 0 .6rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ps-payment-choice__options {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.ps-payment-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    flex: 1;
    min-width: 140px;
    user-select: none;
}
.ps-payment-option:has(input:checked) {
    border-color: #00ff64;
    background: rgba(0,255,100,0.07);
}
.ps-payment-option--disabled {
    opacity: .45;
    cursor: not-allowed;
}
.ps-payment-option input[type="radio"] {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.ps-payment-option__icon { font-size: 1.1rem; }
.ps-payment-option__label { font-weight: 600; font-size: .95rem; flex: 1; }
.ps-payment-option__note { font-size: .75rem; opacity: .55; }

.ps-price-uah {
    font-size: .8rem;
    opacity: .6;
    margin-top: .2rem;
}

/* ==========================================================================
   CANCEL / EDIT MODALS
   ========================================================================== */
.ps-cancel-modal-overlay,
.ps-edit-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.ps-cancel-modal {
    background: #1a1d25;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}
.ps-cancel-modal__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.ps-cancel-modal__title { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0 0 .75rem; }
.ps-cancel-modal__text { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.6; margin: 0 0 1.25rem; }
.ps-cancel-modal__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* Edit modal dynamic fields */
.ps-edit-label {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    font-weight: 600;
    margin: 12px 0 4px;
    text-align: left;
}
.ps-edit-label:first-child { margin-top: 0; }
.ps-edit-input,
.ps-edit-textarea {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: #fff;
    font-size: .9rem;
    padding: 10px 12px;
    font-family: inherit;
    transition: border-color .2s;
    box-sizing: border-box;
}
.ps-edit-input:focus,
.ps-edit-textarea:focus {
    outline: none;
    border-color: rgba(0,255,100,.5);
}
.ps-edit-textarea { resize: vertical; min-height: 48px; }

/* ==========================================================================
   REQUEST ACTION BUTTONS
   ========================================================================== */
.ps-request-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.ps-btn--danger {
    background: transparent;
    border: 1.5px solid #ef4444;
    color: #ef4444;
}
.ps-btn--danger:hover {
    background: rgba(239,68,68,.12);
}

/* ==========================================================================
   ADMIN: payment method / hold badges
   ========================================================================== */
.ps-pay-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
}
.ps-pay-badge--em {
    background: rgba(0,255,100,.1);
    color: #00ff64;
}
.ps-pay-badge--card {
    background: rgba(139,92,246,.15);
    color: #a78bfa;
}
.ps-hold-badge {
    display: inline-flex;
    align-items: center;
    padding: .15rem .45rem;
    border-radius: 4px;
    font-size: .7rem;
    margin-left: .3rem;
}
.ps-hold-badge--held     { background: rgba(245,158,11,.15);  color: #f59e0b; }
.ps-hold-badge--captured { background: rgba(34,197,94,.15);   color: #22c55e; }
.ps-hold-badge--other    { background: rgba(100,116,139,.15); color: #94a3b8; }

/* ==========================================================================
   PAYMENT METHOD TABS (demo / juggernaut forms)
   ========================================================================== */
.ps-pay-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0 0;
}

.ps-pay-tab {
    border: 1px solid var(--glhf-border-solid, rgba(255,255,255,.12));
    border-radius: var(--glhf-radius-sm, 8px);
    background: transparent;
    color: var(--glhf-text-secondary, rgba(255,255,255,.55));
    font-family: var(--glhf-font-heading, inherit);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 18px;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
}

.ps-pay-tab:hover:not(:disabled) {
    border-color: var(--glhf-border-bright, rgba(255,255,255,.35));
    color: var(--glhf-text-primary, #fff);
}

.ps-pay-tab.is-active {
    border-color: var(--glhf-accent, #00ff64);
    background: rgba(0,255,100,.08);
    color: var(--glhf-accent, #00ff64);
    box-shadow: inset 0 0 0 1px rgba(0,255,100,.15);
}

.ps-pay-tab:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.ps-submit-price {
    margin: 12px 0 8px;
    font-size: 1rem;
    color: rgba(255,255,255,.88);
}
.ps-submit-price .ps-inline-em {
    vertical-align: -3px;
    margin: 0 2px;
}
