/* ============================================================================
   share.css
   Styles for the PlayStation account-sharing page.
   Matches the existing site palette (purple #7928ca, pink #ff0080, dark navy).
   ============================================================================ */

:root {
    --share-ps5: #00a3ff;
    --share-ps4: #006fcc;
    --share-sec: #ff7c2a;
    --share-accent-grad: linear-gradient(90deg, #7928ca 0%, #ff0080 100%);
    --share-accent-grad-soft: linear-gradient(135deg, rgba(121, 40, 202, 0.15), rgba(255, 0, 128, 0.15));
    --share-card-bg: #ffffff;
    --share-card-border: #efe7f7;
    --share-text: #2d2d5a;
    --share-text-muted: #6c757d;
    --share-radius-lg: 18px;
    --share-radius-md: 12px;
    --share-shadow-sm: 0 2px 8px rgba(45, 45, 90, 0.06);
    --share-shadow-md: 0 8px 24px rgba(45, 45, 90, 0.10);
    --share-shadow-lg: 0 18px 50px rgba(45, 45, 90, 0.18);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.share-hero {
    background: linear-gradient(135deg, #1c1640 0%, #2d1b69 50%, #4a1b6e 100%);
    padding: 60px 0 80px;
}
.share-hero .platform-hero-title {
    background: linear-gradient(90deg, #ffffff 30%, #ffb6e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3rem;
    line-height: 1.15;
}
.share-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffd6ec;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}
.share-hero-badge i { color: #ff80c8; }

.share-hero-art {
    position: relative;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.share-slot {
    position: absolute;
    width: 140px;
    height: 180px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}
.share-slot span {
    font-size: 4rem;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.share-slot small {
    margin-top: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    opacity: 0.85;
}
.share-slot--ps5 { background: linear-gradient(135deg, #00d4ff, #0070d1); transform: rotate(-8deg) translateX(-90px); }
.share-slot--ps4 { background: linear-gradient(135deg, #4a6fff, #003791); transform: rotate(0deg);   z-index: 2; }
.share-slot--sec { background: linear-gradient(135deg, #ff7c2a, #ff0080); transform: rotate(8deg) translateX(90px);  }
.share-hero-art:hover .share-slot--ps5 { transform: rotate(-12deg) translateX(-110px) translateY(-6px); }
.share-hero-art:hover .share-slot--ps4 { transform: scale(1.05) translateY(-10px); }
.share-hero-art:hover .share-slot--sec { transform: rotate(12deg) translateX(110px)  translateY(-6px); }

/* ─── How it works strip ─────────────────────────────────────────────────── */
.share-howitworks {
    background: #f8f9fa;
    padding: 50px 0;
    border-bottom: 1px solid #ecedf3;
}
.how-step {
    text-align: center;
    padding: 10px;
}
.how-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--share-accent-grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 14px;
    box-shadow: 0 6px 18px rgba(121, 40, 202, 0.3);
}
.how-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--share-text);
    margin-bottom: 6px;
}
.how-step p {
    font-size: 0.9rem;
    color: var(--share-text-muted);
    margin: 0;
}

/* ─── Pools section ──────────────────────────────────────────────────────── */
.share-pools-section {
    padding: 60px 0 80px;
    background: #fff;
}
.share-pools-section .section-title {
    color: var(--share-text);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.share-pools-section .section-subtitle {
    color: var(--share-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA button — reused throughout */
.share-cta-btn {
    background: var(--share-accent-grad);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(121, 40, 202, 0.3);
}
.share-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 0, 128, 0.35);
    color: #fff;
}

/* Filter bar */
.share-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid var(--share-card-border);
    border-radius: var(--share-radius-md);
    padding: 10px 14px;
    margin-bottom: 30px;
}
.share-filterbar-search {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.share-filterbar-search i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: var(--share-text-muted);
}
.share-filterbar-search input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 8px 8px 38px;
    outline: none;
    font-size: 0.95rem;
}
.share-filterbar-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.share-chip {
    background: #fff;
    border: 1px solid var(--share-card-border);
    color: var(--share-text);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.share-chip:hover {
    border-color: #b58cff;
    color: #7928ca;
}
.share-chip.active {
    background: var(--share-accent-grad);
    border-color: transparent;
    color: #fff;
}

/* Loading / empty states */
.share-pools-loading,
.share-pools-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--share-text-muted);
}
.share-pools-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #ecedf3;
    border-top-color: #7928ca;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: share-spin 0.8s linear infinite;
}
@keyframes share-spin { to { transform: rotate(360deg); } }
.share-pools-empty i {
    font-size: 3rem;
    color: #d9d9e4;
    margin-bottom: 16px;
}
.share-pools-empty h3 { color: var(--share-text); }

/* ─── Pool card ──────────────────────────────────────────────────────────── */
.share-pool-card {
    background: var(--share-card-bg);
    border-radius: var(--share-radius-lg);
    border: 1px solid var(--share-card-border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.share-pool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--share-shadow-md);
    border-color: #d9c8f0;
}
.share-pool-card.is-almost-full {
    border-color: #ff8a3d;
    box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.15);
}
.share-pool-flame {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: linear-gradient(90deg, #ff7c2a, #ff0080);
    color: #fff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(255, 124, 42, 0.4);
    animation: share-pulse 1.6s ease-in-out infinite;
}
@keyframes share-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

.share-pool-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a30;
}
.share-pool-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.share-pool-card:hover .share-pool-cover img { transform: scale(1.06); }

.share-pool-platform-tags {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 4px;
}
.ptag {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.05em;
}
.tag-ps5 { background: linear-gradient(135deg, #00a3ff, #003791); }
.tag-ps4 { background: linear-gradient(135deg, #003791, #1a1a30); }
.tag-sub { background: linear-gradient(135deg, #ff7c2a, #ff0080); }

.share-pool-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.share-pool-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--share-text);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.share-pool-progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.progress-bar-track {
    height: 6px;
    background: #f0eef7;
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: var(--share-accent-grad);
    border-radius: 3px;
    transition: width 0.5s ease;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--share-text-muted);
}
.progress-info .missing { color: #ff5555; font-weight: 600; }

.share-pool-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 6px;
}
.share-pool-slot {
    border: 1px solid var(--share-card-border);
    border-radius: 8px;
    padding: 6px 4px;
    text-align: center;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}
.share-pool-slot i { font-size: 0.85rem; margin-bottom: 2px; display: block; }
.share-pool-slot .slot-label { font-weight: 600; color: var(--share-text); }
.share-pool-slot .slot-state { color: var(--share-text-muted); font-size: 0.7rem; }
.share-pool-slot.is-taken { opacity: 0.45; background: #fafafa; }
.share-pool-slot.is-open  { background: #fff; }
.share-pool-slot.tone-ps5 i { color: var(--share-ps5); }
.share-pool-slot.tone-ps4 i { color: var(--share-ps4); }
.share-pool-slot.tone-sec i { color: var(--share-sec); }

.share-join-btn {
    width: 100%;
    background: var(--share-accent-grad);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}
.share-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 128, 0.3);
    color: #fff;
}

/* ─── My reservation banner ──────────────────────────────────────────────── */
.share-my-reservation {
    margin-top: 30px;
    background: linear-gradient(135deg, #2d1b69, #1c1640);
    color: #fff;
    border-radius: var(--share-radius-lg);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--share-shadow-md);
}
.my-res-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffb6e1;
}
.my-res-body { flex: 1; }
.my-res-title { font-weight: 700; margin-bottom: 4px; }
.my-res-detail { font-size: 0.9rem; opacity: 0.9; }
.status-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
}
.status-pill.status-reserved { background: rgba(255, 196, 0, 0.25); color: #ffd76b; }
.status-pill.status-confirmed { background: rgba(0, 200, 100, 0.25); color: #6bff9c; }
.status-pill.status-paid     { background: rgba(0, 150, 255, 0.25); color: #6bd6ff; }
.status-pill.status-delivered { background: rgba(180, 100, 255, 0.25); color: #d6a8ff; }
.status-pill.status-cancelled { background: rgba(255, 90, 90, 0.25); color: #ff9b9b; }

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.share-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.share-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 35, 0.78);
    backdrop-filter: blur(4px);
    animation: share-fade-in 0.25s ease;
}
@keyframes share-fade-in { from { opacity: 0; } to { opacity: 1; } }
.share-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: var(--share-radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: var(--share-shadow-lg);
    animation: share-slide-in 0.3s ease;
}
@keyframes share-slide-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.share-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0eef7;
    border: none;
    color: var(--share-text);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}
.share-modal-close:hover { background: #e2dcf2; transform: rotate(90deg); }

.share-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--share-text);
    margin-bottom: 6px;
}
.share-step-help {
    color: var(--share-text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}
.share-back {
    background: none;
    border: none;
    color: #7928ca;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 14px;
    padding: 4px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.share-back:hover { color: #ff0080; }

/* Game search */
.share-search {
    position: relative;
    margin-bottom: 16px;
}
.share-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--share-text-muted);
}
.share-search input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid var(--share-card-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}
.share-search input:focus {
    outline: none;
    border-color: #7928ca;
}
.share-search-results {
    max-height: 380px;
    overflow-y: auto;
    border: 1px solid var(--share-card-border);
    border-radius: 12px;
}
.search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    width: 100%;
    background: #fff;
    border: none;
    border-bottom: 1px solid var(--share-card-border);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: #faf7ff; }
.search-result img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    background: #1a1a30;
}
.search-result-info { flex: 1; }
.search-result-title { font-weight: 600; color: var(--share-text); margin-bottom: 2px; }
.search-result-meta {
    font-size: 0.8rem;
    color: var(--share-text-muted);
    display: flex;
    gap: 8px;
}
.search-result i { color: var(--share-text-muted); }
.search-loading,
.search-empty {
    padding: 28px;
    text-align: center;
    color: var(--share-text-muted);
}

/* Selected game info card */
.share-selected-game {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--share-accent-grad-soft);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
}
.share-selected-game img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}
.selected-title { font-weight: 700; color: var(--share-text); margin-bottom: 4px; }
.selected-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.selected-meta .full-price { color: var(--share-text-muted); }

/* Existing pool banner */
.share-existing-pool {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff5e6;
    border: 1px solid #ffd699;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
.share-existing-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff7c2a, #ff0080);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-existing-progress { font-size: 0.85rem; color: #b76d1f; }

/* Slot choice grid */
.share-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.share-slot-choice {
    background: #fff;
    border: 2px solid var(--share-card-border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.share-slot-choice i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
.share-slot-choice.tone-ps5 i { color: var(--share-ps5); }
.share-slot-choice.tone-ps4 i { color: var(--share-ps4); }
.share-slot-choice.tone-sec i { color: var(--share-sec); }
.slot-choice-label { font-weight: 700; color: var(--share-text); margin-bottom: 4px; }
.slot-choice-desc { font-size: 0.8rem; color: var(--share-text-muted); margin-bottom: 10px; min-height: 2.4em; }
.slot-choice-price { font-weight: 700; font-size: 1.05rem; color: var(--share-text); }

.share-slot-choice:not(:disabled):hover {
    transform: translateY(-3px);
    border-color: #7928ca;
    box-shadow: var(--share-shadow-md);
}
.share-slot-choice.is-taken,
.share-slot-choice.is-unavailable {
    cursor: not-allowed;
    opacity: 0.55;
    background: #fafafa;
}
.share-slot-choice.is-unavailable { filter: grayscale(0.5); }
.slot-na { color: var(--share-text-muted); font-style: italic; font-size: 0.85rem; }
.share-slot-none {
    grid-column: 1 / -1;
    background: rgba(255, 0, 128, 0.06);
    border: 1px dashed rgba(255, 0, 128, 0.35);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--share-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.taken-badge {
    background: #f0eef7;
    color: var(--share-text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

/* Selected slot info */
.share-selected-slot {
    background: #faf7ff;
    border: 1px solid #ead8ff;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-selected-slot i { color: #7928ca; }
.slot-price-tag {
    margin-left: auto;
    background: var(--share-accent-grad);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Form */
.share-field {
    display: block;
    margin-bottom: 14px;
}
.share-field span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--share-text);
    margin-bottom: 6px;
}
.share-field input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--share-card-border);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}
.share-field input:focus {
    outline: none;
    border-color: #7928ca;
}

.share-summary {
    background: #faf7ff;
    border-radius: 12px;
    padding: 14px;
    margin: 18px 0;
}
.share-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}
.share-summary-row strong { color: var(--share-text); }
.share-summary-row.text-muted { color: var(--share-text-muted); }
.share-summary-row.small { font-size: 0.8rem; }

.share-submit-btn {
    width: 100%;
    background: var(--share-accent-grad);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(121, 40, 202, 0.3);
}
.share-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 0, 128, 0.4);
    color: #fff;
}
.share-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.share-form-error {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 10px;
    color: #b00;
    font-size: 0.9rem;
}

/* Success step */
.share-success { text-align: center; padding: 20px 10px; }
.share-success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 14px;
    animation: share-pop 0.6s ease;
}
@keyframes share-pop {
    0% { transform: scale(0.4); opacity: 0; }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.share-success h3 { color: var(--share-text); margin-bottom: 8px; }
.share-success > p { color: var(--share-text-muted); margin-bottom: 24px; }

.share-success-card {
    background: #faf7ff;
    border: 1px solid #ead8ff;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 18px 0;
    text-align: left;
}
.success-card-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ead8ff;
}
.success-card-row:last-child { border-bottom: none; }
.success-card-row span { color: var(--share-text-muted); }
.success-card-row strong { color: var(--share-text); }

.share-success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 24px 0 18px;
    flex-wrap: wrap;
}
.share-success-actions .btn-outline-light {
    color: #7928ca;
    border: 2px solid #7928ca;
    background: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}
.share-success-actions .btn-outline-light:hover {
    background: #7928ca;
    color: #fff;
}
.share-success-note { font-size: 0.8rem; }
.share-success-note code {
    background: #2d1b69;
    color: #ffd6ec;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
}
.share-copy-token {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffd6ec;
    border-radius: 6px;
    padding: 4px 9px;
    margin-left: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.share-copy-token:hover { background: rgba(255, 255, 255, 0.22); }

/* ── Find reservation by code (cross-device recovery) ─────────────────────── */
.share-find-reservation { margin-top: 16px; }
.share-find-toggle {
    background: none;
    border: none;
    color: #c9b8ff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* Light-themed page: the old #fff hover made this link vanish into the white
   background. Use the accent colour + a darker base so it stays readable. */
.share-find-toggle { color: #7a4ddb; }
.share-find-toggle:hover { color: var(--share-accent, #ff0080); }

/* PS Plus cover image sits on TOP of the crown fallback; if it fails to load
   it hides (display:none via onerror) and the crown shows through. */
.share-cover-psplus {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.share-find-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.share-find-form input {
    flex: 1;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Courier New', monospace;
}
.share-find-form input:focus {
    outline: none;
    border-color: var(--share-accent, #ff0080);
}
.share-find-result { margin-top: 12px; font-size: 0.9rem; }
.share-find-result .find-err { color: #ff9b9b; }
.share-find-result .find-card {
    background: linear-gradient(135deg, #2d1b69, #1c1640);
    color: #fff;
    border-radius: var(--share-radius-lg, 14px);
    padding: 14px 18px;
}

.share-kind-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.share-kind-card {
    border: 1px solid var(--share-card-border, #efe7f7);
    background: #fff;
    border-radius: var(--share-radius-md, 12px);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    color: var(--share-text, #2d2d5a);
    transition: transform .12s, border-color .12s, background .12s, box-shadow .12s;
    box-shadow: var(--share-shadow-sm, 0 2px 8px rgba(45, 45, 90, 0.06));
}
.share-kind-card:hover {
    transform: translateY(-2px);
    border-color: #ff60b0;
    background: var(--share-accent-grad-soft, linear-gradient(135deg, rgba(121,40,202,0.08), rgba(255,0,128,0.08)));
    box-shadow: var(--share-shadow-md, 0 8px 24px rgba(45, 45, 90, 0.10));
}
.share-kind-icon {
    font-size: 36px;
    margin-bottom: 10px;
    background: var(--share-accent-grad, linear-gradient(90deg, #7928ca, #ff0080));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.share-kind-label {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--share-text, #2d2d5a);
}
.share-kind-desc {
    font-size: 13px;
    color: var(--share-text-muted, #6c757d);
    line-height: 1.4;
}
 
@media (max-width: 540px) {
    .share-kind-grid { grid-template-columns: 1fr; }
}
 
/* ─── Step 1B: Subscription picker ────────────────────────────────────────── */
.share-sub-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
}
.share-sub-tier, .share-sub-duration {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.share-sub-pill {
    background: #f6f3fb;
    border: 1px solid var(--share-card-border, #efe7f7);
    color: var(--share-text, #2d2d5a);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .12s;
}
.share-sub-pill:hover {
    border-color: #ff60b0;
    background: #fff;
}
.share-sub-pill.active {
    background: var(--share-accent-grad, linear-gradient(90deg, #7928ca, #ff0080));
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 0, 128, 0.25);
}
 
.share-sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.share-sub-card {
    background: #fff;
    border: 1px solid var(--share-card-border, #efe7f7);
    border-radius: var(--share-radius-md, 12px);
    padding: 14px;
    cursor: pointer;
    color: var(--share-text, #2d2d5a);
    text-align: left;
    transition: transform .12s, border-color .12s, box-shadow .12s;
    box-shadow: var(--share-shadow-sm, 0 2px 8px rgba(45, 45, 90, 0.06));
}
.share-sub-card:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: #ff60b0;
    box-shadow: var(--share-shadow-md, 0 8px 24px rgba(45, 45, 90, 0.10));
}
.share-sub-card.is-unpriced {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f8f6fb;
}
.share-sub-card.is-unpriced:hover {
    transform: none;
    border-color: var(--share-card-border, #efe7f7);
    box-shadow: var(--share-shadow-sm, 0 2px 8px rgba(45, 45, 90, 0.06));
}
.share-sub-card-region {
    font-size: 11px;
    color: var(--share-text-muted, #6c757d);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.share-sub-card-name {
    font-weight: 600;
    margin: 6px 0 4px;
    font-size: 14px;
    color: var(--share-text, #2d2d5a);
}
.share-sub-card-price {
    font-weight: 700;
    background: var(--share-accent-grad, linear-gradient(90deg, #7928ca, #ff0080));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 17px;
    margin-bottom: 6px;
}
.share-sub-card.is-unpriced .share-sub-card-price {
    background: none;
    -webkit-text-fill-color: var(--share-text-muted, #6c757d);
    color: var(--share-text-muted, #6c757d);
    font-size: 13px;
    font-weight: 500;
}
.share-sub-card-cta {
    font-size: 12px;
    color: var(--share-text-muted, #6c757d);
}
 
/* ─── Step 3: Contact picker ──────────────────────────────────────────────── */
.share-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.share-contact-card {
    background: #fff;
    border: 1px solid var(--share-card-border, #efe7f7);
    border-radius: var(--share-radius-md, 12px);
    padding: 22px;
    cursor: pointer;
    color: var(--share-text, #2d2d5a);
    text-align: center;
    transition: all .15s;
    box-shadow: var(--share-shadow-sm, 0 2px 8px rgba(45, 45, 90, 0.06));
}
.share-contact-card:hover {
    transform: translateY(-2px);
    border-color: var(--c, #ff0080);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--c, #ff0080) 25%, transparent);
}
.share-contact-icon {
    font-size: 38px;
    color: var(--c, #ff60b0);
    margin-bottom: 12px;
    line-height: 1;
}
.share-contact-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--share-text, #2d2d5a);
}
.share-contact-desc {
    font-size: 12px;
    color: var(--share-text-muted, #6c757d);
    line-height: 1.4;
}
 
@media (max-width: 540px) {
    .share-contact-grid { grid-template-columns: 1fr; }
}
 
/* ─── Step 4: Wait screen ─────────────────────────────────────────────────── */
.share-wait {
    text-align: center;
    padding: 20px 10px;
    color: var(--share-text, #2d2d5a);
}
.share-wait-icon {
    font-size: 48px;
    background: var(--share-accent-grad, linear-gradient(90deg, #7928ca, #ff0080));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}
.share-wait h3 {
    color: var(--share-text, #2d2d5a) !important;
    margin-bottom: 8px;
}
.share-wait p {
    color: var(--share-text-muted, #6c757d);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}
.share-wait-code {
    display: inline-block;
    font-family: 'Courier New', 'Courier', monospace;
    background: #fff5fa;
    border: 1px dashed #ff0080;
    border-radius: 10px;
    padding: 14px 22px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 8px 0 18px;
    color: #ff0080;
}
.share-wait-cta {
    background: var(--share-accent-grad, linear-gradient(90deg, #7928ca, #ff0080));
    color: #fff !important;
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    transition: transform .12s, box-shadow .12s;
    box-shadow: 0 4px 14px rgba(255, 0, 128, 0.3);
}
.share-wait-cta:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 0, 128, 0.4);
}
.share-wait-cta.disabled {
    opacity: 0.55;
    pointer-events: none;
    box-shadow: none;
}
.share-wait-status {
    background: #f6f3fb;
    border: 1px solid var(--share-card-border, #efe7f7);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--share-text, #2d2d5a);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.share-wait-status .fa-circle-check { color: #2ecc71; }
.share-wait-status .fa-triangle-exclamation { color: #f39c12; }
.share-wait-status .fa-circle-notch,
.share-wait-status .fa-clock { color: #ff60b0; }
.share-wait-note {
    margin-top: 14px;
    color: var(--share-text-muted, #6c757d);
}


/* =============================================================================
   APPEND TO public_html/style/share.css   (v3 — layer 3b)
   New visual elements: month numeric input, section dividers, LIVE badge,
   activated pool card variant.
   ============================================================================= */

/* ── Custom 1-12 month input ─────────────────────────────────────────────── */
.share-sub-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--share-card-bg, rgba(255,255,255,.04));
    border: 1px solid var(--share-card-border, rgba(255,255,255,.08));
    border-radius: 999px;
    margin-left: 4px;
}
.share-sub-custom-label {
    color: var(--share-text-muted, #8a8aa8);
    font-size: 13px;
    margin: 0;
}
.share-sub-custom-input {
    width: 56px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--share-card-border, rgba(255,255,255,.12));
    color: var(--share-text, inherit);
    border-radius: 6px;
    padding: 4px 6px;
    font-weight: 600;
    font-size: 15px;
}
.share-sub-custom-input:focus {
    outline: 2px solid var(--share-accent, #ff3da0);
    outline-offset: 1px;
}
.share-sub-custom-unit {
    color: var(--share-text-muted, #8a8aa8);
    font-size: 13px;
}

/* RTL niceties for Arabic */
[dir="rtl"] .share-sub-custom { margin-left: 0; margin-right: 4px; }

/* ── Section dividers (Recruiting vs Activated) ──────────────────────────── */
.share-section-heading {
    margin: 18px 0 4px;
    padding: 0 8px;
}
.share-section-heading h3 {
    font-size: 18px;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-section-heading h3 i {
    color: var(--share-accent, #ff3da0);
}
.share-section-heading.is-activated h3 i {
    color: #2ecc71;       /* green for live */
}
.share-section-sub {
    color: var(--share-text-muted, #8a8aa8);
    font-size: 13px;
}

/* ── "LIVE" badge on activated pool cards ────────────────────────────────── */
.ptag.tag-live {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: bk-live-pulse 1.8s ease-in-out infinite;
}
.ptag.tag-live i {
    margin-right: 3px;
}
@keyframes bk-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, .45); }
    50%      { box-shadow: 0 0 0 6px rgba(46, 204, 113,   0); }
}

/* ── Activated pool card — subtle green tint to differentiate ────────────── */
.share-pool-card.is-activated {
    border-color: rgba(46, 204, 113, 0.25);
}
.share-pool-card.is-activated .share-pool-cover {
    box-shadow: inset 0 -2px 0 0 rgba(46, 204, 113, 0.4);
}


.share-sub-grid:has(.share-sub-card-solo) {
    /* When there's just one card, stop the grid stretching it across columns */
    grid-template-columns: minmax(240px, 360px);
    justify-content: center;
}
.share-sub-card-solo {
    /* Slightly more presence since it's standalone */
    padding: 18px 20px;
}
.share-sub-card-solo .share-sub-card-name {
    font-size: 16px;
    margin-bottom: 6px;
}
.share-sub-card-solo .share-sub-card-price {
    font-size: 22px;
    margin-bottom: 8px;
}
 
/* ─── Summary row contact icons ───────────────────────────────────────────── */
.share-summary-row strong .fa-brands {
    margin-right: 6px;
}
.share-summary-row strong .fa-facebook-messenger { color: #0084ff; }
.share-summary-row strong .fa-whatsapp           { color: #25d366; }
 
/* =============================================================================
   APPEND TO public_html/style/share.css   (v3 — round 6: image fix + 3-sections + suggest)
   ============================================================================= */

/* ── Cover fallbacks (replaces broken JPGs that caused the blink loop) ─── */
.share-cover-fallback {
    width: 100%;
    height: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    border-radius: inherit;
}
.share-cover-sub {
    background: linear-gradient(135deg, #ff3da0 0%, #6a3de0 100%);
}
.share-cover-game {
    background: linear-gradient(135deg, #364b78 0%, #6e80a8 100%);
}
/* Small inline-banner variant (the cover in renderGameInfoCards) — sits next
   to the title, smaller than a card cover. */
.selected-game-info .share-cover-fallback,
#selectedGameInfo .share-cover-fallback,
#selectedGameInfo2 .share-cover-fallback,
#selectedGameInfo3 .share-cover-fallback {
    width: 60px;
    height: 60px;
    min-height: 60px;
    font-size: 22px;
    border-radius: 12px;
    flex-shrink: 0;
}
/* When a game img 404s, the JS now nukes the src and adds .cover-broken so
   we don't get the OS broken-image icon — just hides cleanly. */
img.cover-broken {
    background: linear-gradient(135deg, #364b78 0%, #6e80a8 100%);
    object-fit: contain;
}

/* ── Awaiting-launch pool section + card variant ─────────────────────────── */
.share-section-heading.is-awaiting h3 i {
    color: #ffb627;       /* amber */
}
.share-pool-card.is-awaiting {
    border-color: rgba(255, 182, 39, 0.30);
    opacity: 0.92;
}
.share-pool-card.is-awaiting .share-pool-cover {
    box-shadow: inset 0 -2px 0 0 rgba(255, 182, 39, 0.45);
}
.share-pool-card.is-awaiting .share-join-btn.is-disabled {
    background: rgba(255, 182, 39, 0.18);
    color: #ffb627;
    border-color: rgba(255, 182, 39, 0.30);
    cursor: not-allowed;
}
.share-pool-card.is-awaiting .share-join-btn.is-disabled:hover {
    /* Stop the hover-scale animation that comes from .share-join-btn:hover */
    transform: none;
    background: rgba(255, 182, 39, 0.18);
}
.ptag.tag-awaiting {
    background: linear-gradient(135deg, #ffb627, #ff8c00);
    color: #fff;
    font-weight: 700;
}
.ptag.tag-awaiting i { margin-right: 3px; }

/* =============================================================================
   v4 — Live (created) vs Forming (not created): clearer two-world distinction,
   per-card status chip, days-left line, and the seat timeline modal.
   ============================================================================= */

/* Section headings */
.share-section-heading.is-live    h3 i { color: #2ecc71; }   /* green = exists */
.share-section-heading.is-forming h3 i { color: #ff3da0; }   /* pink = forming */

/* FORMING cover badge */
.ptag.tag-forming {
    background: linear-gradient(135deg, #6a3de0, #ff3da0);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.ptag.tag-forming i { margin-right: 3px; }

/* Forming card — subtle pink edge so it reads differently from a live one */
.share-pool-card.is-forming {
    border-color: rgba(255, 61, 160, 0.22);
}

/* Headline status chip (the "clear difference" the user asked for) */
.share-pool-statusrow { margin: 2px 0 6px; }
.share-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    line-height: 1.4;
}
.share-status-chip.chip-open       { background: rgba(46,204,113,.15);  color: #2ecc71; }
.share-status-chip.chip-closed     { background: rgba(138,138,168,.18); color: #9a9ab8; }
.share-status-chip.chip-recruiting { background: rgba(80,140,255,.15);  color: #5a8cff; }
.share-status-chip.chip-awaiting   { background: rgba(255,182,39,.16);  color: #ffb627; }

/* Days-left line on a live account */
.share-pool-daysleft {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #2ecc71;
    margin: 0 0 8px;
}
.share-pool-daysleft.is-soon { color: #ff6b6b; }
.share-pool-daysleft i { font-size: 11px; }

/* Live card full state — neutral lock button */
.share-pool-card.is-activated .share-join-btn.is-disabled {
    background: rgba(138,138,168,.15);
    color: #9a9ab8;
    border-color: rgba(138,138,168,.25);
    cursor: not-allowed;
}
.share-pool-card.is-activated .share-join-btn.is-disabled:hover {
    transform: none;
    background: rgba(138,138,168,.15);
}

/* Timeline trigger link */
.share-timeline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--share-accent, #ff3da0);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0 8px;
}
.share-timeline-link:hover { text-decoration: underline; }

/* ── Timeline modal ─────────────────────────────────────────────────────── */
.share-timeline-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 20, 0.72);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1080;
    padding: 20px;
}
.share-timeline-modal {
    position: relative;
    background: var(--share-card-bg, #161628);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    width: min(520px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    padding: 22px 22px 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.tl-close {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(125,125,150,.15);
    border: none;
    color: inherit;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.tl-close:hover { background: rgba(125,125,150,.28); }
.tl-title { font-size: 18px; margin: 2px 36px 2px 0; }
.tl-sub   { font-size: 12.5px; color: var(--share-text-muted, #8a8aa8); margin-bottom: 14px; }
.tl-loading, .tl-error { padding: 30px 8px; text-align: center; color: #8a8aa8; }
.tl-error { color: #ff6b6b; }

.tl-bars { display: flex; flex-direction: column; gap: 14px; }
.tl-row  { display: flex; flex-direction: column; gap: 5px; }
.tl-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.tl-head i { color: var(--share-accent, #ff3da0); }
.tl-holder { color: var(--share-text-muted, #8a8aa8); font-weight: 500; }
.tl-renew {
    margin-left: auto;
    font-size: 11px;
    color: #ffcf5a;
    background: rgba(255,182,39,.14);
    padding: 1px 8px;
    border-radius: 999px;
    white-space: nowrap;
}
.tl-renew i { color: #ffcf5a; margin-right: 3px; }
.tl-open {
    margin-left: auto;
    font-size: 11px;
    color: #5a8cff;
    background: rgba(80,140,255,.14);
    padding: 1px 8px;
    border-radius: 999px;
}
.tl-track {
    height: 10px;
    /* Neutral grey that stays visible on both light and dark backgrounds
       (the share page is light-themed, where a near-white track vanished). */
    background: rgba(125,125,150,.22);
    border-radius: 999px;
    overflow: hidden;
}
.tl-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 999px;
    transition: width .4s ease;
}
.tl-fill.is-soon { background: linear-gradient(90deg, #ff8c42, #ff6b6b); }
.tl-row.tl-empty .tl-track { opacity: .5; }
.tl-foot { font-size: 11.5px; color: var(--share-text-muted, #8a8aa8); }
.tl-row.is-soon .tl-foot { color: #ff8c66; }
.tl-note {
    margin-top: 16px;
    font-size: 11.5px;
    color: var(--share-text-muted, #8a8aa8);
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 12px;
}
.tl-note i { color: var(--share-accent, #ff3da0); margin-right: 5px; }

[dir="rtl"] .tl-renew, [dir="rtl"] .tl-open { margin-left: 0; margin-right: auto; }

/* ── Joiner duration picker (join an existing subscription pool) ─────────── */
.share-join-months {
    grid-column: 1 / -1;
    background: rgba(106, 61, 224, 0.06);
    border: 1px solid rgba(106, 61, 224, 0.18);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 4px;
}
.sjm-label {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.sjm-label i { color: var(--share-accent, #ff3da0); }
.sjm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sjm-chip {
    border: 1px solid var(--share-border, #e0d9f0);
    background: #fff;
    color: var(--share-text, #2a2a3a);
    font-weight: 600;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .15s ease;
}
.sjm-chip:hover { border-color: #6a3de0; }
.sjm-chip.active {
    background: linear-gradient(135deg, #6a3de0, #ff3da0);
    border-color: transparent;
    color: #fff;
}
.sjm-hint {
    margin-top: 9px;
    font-size: 11.5px;
    color: var(--share-text-muted, #8a8aa8);
    line-height: 1.45;
}

/* ── "Suggest a game" CTA inline in search results ───────────────────────── */
.share-suggest-cta {
    margin-top: 12px;
    padding: 14px;
    background: rgba(255, 182, 39, 0.08);
    border: 1px dashed rgba(255, 182, 39, 0.30);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}
.share-suggest-cta-text {
    color: var(--share-text-muted, #8a8aa8);
    font-size: 14px;
}
.share-suggest-cta-text i {
    color: #ffb627;
    margin-right: 4px;
}
.share-suggest-btn {
    align-self: center;
}

/* ── Suggest modal status line ───────────────────────────────────────────── */
.share-suggest-status {
    font-size: 14px;
    min-height: 1.4em;
    color: var(--share-text-muted, #8a8aa8);
}
.share-suggest-status.is-error   { color: #e35353; }
.share-suggest-status.is-success { color: #2ecc71; }
.share-suggest-status i { margin-right: 4px; }


/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .share-hero { padding: 40px 0 60px; }
    .share-hero .platform-hero-title { font-size: 2rem; }
    .share-modal-dialog { padding: 24px 20px; max-height: 96vh; }
    .share-step h3 { font-size: 1.2rem; }
    .share-pool-cover { aspect-ratio: 4 / 3; }
    .share-pool-slots { grid-template-columns: repeat(3, 1fr); }
    .share-filterbar { flex-direction: column; align-items: stretch; }
    .share-filterbar-chips { justify-content: flex-start; overflow-x: auto; }
}

/* ─── RTL ────────────────────────────────────────────────────────────────── */
[dir="rtl"] .share-filterbar-search i { left: auto; right: 12px; }
[dir="rtl"] .share-filterbar-search input { padding-left: 8px; padding-right: 38px; }
[dir="rtl"] .share-search i             { left: auto; right: 16px; }
[dir="rtl"] .share-search input         { padding-left: 14px; padding-right: 44px; }
[dir="rtl"] .share-modal-close          { left: 12px; right: auto; }
[dir="rtl"] .share-back i               { transform: scaleX(-1); }
[dir="rtl"] .slot-price-tag             { margin-left: 0; margin-right: auto; }
[dir="rtl"] .share-pool-flame           { left: 12px; right: auto; }
[dir="rtl"] .share-pool-platform-tags   { left: auto; right: 10px; }