/* ============================================================
   Vynta — MLB Prop Swipe  |  mlb_prop_swipe.css
   Hinge-style scrollable player profiles
   ============================================================ */

:root {
    --sp-bg:            #060911;
    --sp-card:          #0d1521;
    --sp-surface:       #111b2e;
    --sp-surface-2:     #0f1829;
    --sp-border:        rgba(140, 168, 220, 0.11);
    --sp-border-mid:    rgba(140, 168, 220, 0.18);
    --sp-border-strong: rgba(140, 168, 220, 0.28);
    --sp-text:          #e6edf8;
    --sp-text-2:        #7e95bc;
    --sp-text-3:        #3d506e;
    --sp-accent:        #4a8ff0;
    --sp-accent-glow:   rgba(74, 143, 240, 0.18);
    --sp-hit:           #3dd68c;
    --sp-hit-glow:      rgba(61, 214, 140, 0.22);
    --sp-miss:          #f05e72;
    --sp-miss-glow:     rgba(240, 94, 114, 0.2);
    --sp-amber:         #f0b93d;
    --sp-amber-glow:    rgba(240, 185, 61, 0.2);
    --sp-purple:        #8b8ff0;
    --sp-purple-glow:   rgba(139, 143, 240, 0.2);
    --sp-tier-a-color:  #3dd68c;
    --sp-tier-b-color:  #f0b93d;
    --sp-tier-c-color:  #f07d3d;
    --sp-pass:          #f05e72;
    --sp-save:          #8b8ff0;
    --sp-like:          #3dd68c;
    --sp-radius-card:   26px;
    --sp-radius-md:     14px;
    --sp-radius-sm:     9px;
}

/* ---- Base ---- */

body {
    margin: 0;
    background: var(--sp-bg);
    color: var(--sp-text);
    font-family: 'Manrope', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ---- Shell ---- */

.sp-shell {
    width: min(1100px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 20px 0 80px;
}

/* ---- Top Bar ---- */

.sp-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.sp-topbar__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sp-accent);
    margin-bottom: 4px;
}

.sp-topbar__title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--sp-text);
}

.sp-topbar__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.sp-topbar__date {
    font-size: 0.84rem;
    color: var(--sp-text-2);
}

.sp-topbar__progress {
    font-size: 0.78rem;
    color: var(--sp-text-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- Layout: stage + sidebar ---- */

.sp-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 28px;
    align-items: start;
}

.sp-stage {
    min-height: 200px;
    position: relative;
}

/* ---- Card ---- */

.sp-card {
    width: 100%;
    height: min(740px, calc(100vh - 170px));
    min-height: 540px;
    border-radius: var(--sp-radius-card);
    background: var(--sp-card);
    border: 1px solid var(--sp-border-mid);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(140, 168, 220, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.sp-card:hover {
    box-shadow:
        0 36px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(140, 168, 220, 0.08);
}

/* ---- Profile Header ---- */

.profile-header {
    flex-shrink: 0;
    padding: 20px 22px 16px;
    background: linear-gradient(170deg,
        rgba(22, 34, 58, 0.98) 0%,
        rgba(13, 21, 33, 0.96) 100%);
    border-bottom: 1px solid var(--sp-border);
    position: relative;
}

.profile-header__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.profile-player-name {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--sp-text);
    flex: 1;
}

.profile-tier-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.tier-a { background: rgba(61, 214, 140, 0.15); color: var(--sp-tier-a-color); border: 1px solid rgba(61, 214, 140, 0.38); }
.tier-b { background: rgba(240, 185, 61, 0.15);  color: var(--sp-tier-b-color); border: 1px solid rgba(240, 185, 61, 0.38); }
.tier-c { background: rgba(240, 125, 61, 0.15);  color: var(--sp-tier-c-color); border: 1px solid rgba(240, 125, 61, 0.38); }

.profile-team-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.profile-team-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--sp-accent-glow);
    border: 1px solid rgba(74, 143, 240, 0.22);
    border-radius: 6px;
    padding: 2px 9px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--sp-accent);
    letter-spacing: 0.04em;
}

.profile-game-info {
    font-size: 0.83rem;
    color: var(--sp-text-2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-game-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--sp-text-3);
    display: inline-block;
}

.profile-prop-pill {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(74, 143, 240, 0.08);
    border: 1px solid rgba(74, 143, 240, 0.26);
    border-radius: var(--sp-radius-md);
    overflow: hidden;
}

.prop-pill__label {
    flex: 1;
    padding: 10px 14px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--sp-text);
    letter-spacing: -0.01em;
}

.prop-pill__side {
    padding: 10px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sp-accent);
    border-left: 1px solid rgba(74, 143, 240, 0.22);
}

.prop-pill__odds {
    padding: 10px 14px;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--sp-text);
    border-left: 1px solid rgba(74, 143, 240, 0.22);
    background: rgba(74, 143, 240, 0.07);
}

/* ---- Profile Body (scrollable) ---- */

.profile-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(140, 168, 220, 0.15) transparent;
}

.profile-body::-webkit-scrollbar { width: 4px; }
.profile-body::-webkit-scrollbar-track { background: transparent; }
.profile-body::-webkit-scrollbar-thumb {
    background: rgba(140, 168, 220, 0.15);
    border-radius: 2px;
}

/* ---- Sections ---- */

.profile-section {
    padding: 14px 20px 16px;
    border-bottom: 1px solid var(--sp-border);
}

.profile-section:last-child {
    border-bottom: none;
}

.section-label {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sp-text-3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sp-border);
}

/* ---- Form Strip ---- */

.form-dots {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.form-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: default;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    position: relative;
}

.form-dot:hover {
    transform: scale(1.35);
    z-index: 1;
}

.form-dot.hit {
    background: var(--sp-hit);
    box-shadow: 0 0 7px var(--sp-hit-glow);
}

.form-dot.miss {
    background: var(--sp-miss);
    box-shadow: 0 0 5px var(--sp-miss-glow);
}

.form-dot.empty {
    background: var(--sp-border-strong);
}

.form-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.form-streak {
    font-weight: 700;
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-streak.hot { color: var(--sp-hit); }
.form-streak.cold { color: var(--sp-miss); }
.form-streak.neutral { color: var(--sp-text-2); }

.form-rate-chip {
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 6px;
    padding: 2px 9px;
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--sp-text-2);
}

.form-rate-chip strong {
    color: var(--sp-text);
}

/* ---- Edge Section ---- */

.edge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.edge-row-label {
    width: 68px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--sp-text-2);
    flex-shrink: 0;
}

.edge-bar-track {
    flex: 1;
    height: 7px;
    background: rgba(140, 168, 220, 0.09);
    border-radius: 4px;
    overflow: hidden;
}

.edge-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(.22,.68,0,1.2);
}

.edge-bar-fill.hit-rate-fill {
    background: linear-gradient(90deg, #3a7fe0, #4a8ff0);
}

.edge-bar-fill.implied-fill {
    background: rgba(140, 168, 220, 0.32);
}

.edge-pct {
    width: 38px;
    text-align: right;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sp-text);
    flex-shrink: 0;
}

.edge-callout {
    margin-top: 11px;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.06em;
}

.edge-callout.positive {
    background: rgba(61, 214, 140, 0.09);
    color: var(--sp-hit);
    border: 1px solid rgba(61, 214, 140, 0.25);
}

.edge-callout.negative {
    background: rgba(240, 94, 114, 0.09);
    color: var(--sp-miss);
    border: 1px solid rgba(240, 94, 114, 0.22);
}

.edge-callout.neutral {
    background: var(--sp-surface);
    color: var(--sp-text-2);
    border: 1px solid var(--sp-border);
}

.odds-row {
    display: flex;
    gap: 8px;
    margin-top: 11px;
}

.odds-pill {
    flex: 1;
    padding: 8px 10px;
    border-radius: var(--sp-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.odds-pill__side {
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.odds-pill.over {
    background: rgba(61, 214, 140, 0.07);
    border: 1px solid rgba(61, 214, 140, 0.2);
    color: var(--sp-hit);
}

.odds-pill.under {
    background: rgba(240, 94, 114, 0.07);
    border: 1px solid rgba(240, 94, 114, 0.2);
    color: var(--sp-miss);
}

/* ---- Matchup Section ---- */

.pitcher-card {
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-md);
    padding: 12px 14px;
    margin-bottom: 8px;
}

.pitcher-identity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
}

.pitcher-name {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--sp-text);
}

.pitcher-hand-badge {
    font-size: 0.69rem;
    font-weight: 700;
    background: rgba(74, 143, 240, 0.13);
    color: var(--sp-accent);
    border: 1px solid rgba(74, 143, 240, 0.28);
    border-radius: 5px;
    padding: 1px 7px;
    letter-spacing: 0.05em;
}

.pitcher-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pitcher-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pitcher-stat__lbl {
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sp-text-3);
}

.pitcher-stat__val {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--sp-text);
}

.batting-order-note {
    font-size: 0.83rem;
    color: var(--sp-text-2);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.batting-order-note strong {
    color: var(--sp-text);
    font-weight: 700;
}

.bo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border-mid);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--sp-text);
}

/* ---- Season Stats ---- */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.stat-tile {
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-sm);
    padding: 10px 8px 8px;
    text-align: center;
}

.stat-tile__val {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--sp-text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-tile__lbl {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sp-text-3);
    margin-top: 4px;
    font-weight: 700;
}

/* ---- Alternate Markets ---- */

.alt-market {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-sm);
    margin-bottom: 6px;
    gap: 10px;
}

.alt-market:last-child {
    margin-bottom: 0;
}

.alt-market__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sp-text);
    flex: 1;
}

.alt-market__odds-wrap {
    display: flex;
    gap: 6px;
    align-items: center;
}

.alt-market__odds {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--sp-accent);
    background: var(--sp-accent-glow);
    border: 1px solid rgba(74, 143, 240, 0.2);
    border-radius: 6px;
    padding: 2px 9px;
}

.alt-market__quality {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sp-text-3);
}

/* ---- Signals & Risks ---- */

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.signal-chip {
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.signal-chip.positive {
    background: rgba(61, 214, 140, 0.09);
    color: var(--sp-hit);
    border: 1px solid rgba(61, 214, 140, 0.24);
}

.signal-chip.risk {
    background: rgba(240, 185, 61, 0.09);
    color: var(--sp-amber);
    border: 1px solid rgba(240, 185, 61, 0.24);
}

/* ---- Action Bar ---- */

.profile-actions {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    padding: 13px 16px 14px;
    background: linear-gradient(0deg, rgba(8, 14, 24, 0.98), rgba(13, 21, 33, 0.95));
    border-top: 1px solid var(--sp-border-mid);
}

.action-btn {
    flex: 1;
    min-height: 54px;
    border-radius: 15px;
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-family: inherit;
    transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.action-btn:active {
    transform: scale(0.94);
}

.action-btn__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.action-btn__label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.action-btn--pass {
    border-color: rgba(240, 94, 114, 0.35);
    color: var(--sp-pass);
}
.action-btn--pass:hover, .action-btn--pass:focus-visible {
    background: rgba(240, 94, 114, 0.1);
    box-shadow: 0 0 16px rgba(240, 94, 114, 0.12);
    transform: translateY(-2px);
}

.action-btn--save {
    border-color: rgba(139, 143, 240, 0.35);
    color: var(--sp-save);
}
.action-btn--save:hover, .action-btn--save:focus-visible {
    background: rgba(139, 143, 240, 0.1);
    box-shadow: 0 0 16px rgba(139, 143, 240, 0.12);
    transform: translateY(-2px);
}

.action-btn--like {
    border-color: rgba(61, 214, 140, 0.35);
    color: var(--sp-like);
}
.action-btn--like:hover, .action-btn--like:focus-visible {
    background: rgba(61, 214, 140, 0.1);
    box-shadow: 0 0 16px rgba(61, 214, 140, 0.12);
    transform: translateY(-2px);
}

/* ---- Empty & Loading States ---- */

.sp-empty {
    width: 100%;
    height: min(740px, calc(100vh - 170px));
    min-height: 300px;
    border-radius: var(--sp-radius-card);
    background: var(--sp-card);
    border: 1px solid var(--sp-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 28px;
    gap: 10px;
}

.sp-empty__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(61, 214, 140, 0.1);
    border: 1px solid rgba(61, 214, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--sp-hit);
    margin-bottom: 6px;
}

.sp-empty h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sp-empty p {
    margin: 0;
    color: var(--sp-text-2);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.5;
}

.sp-restart-btn {
    margin-top: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid var(--sp-border-mid);
    background: transparent;
    color: var(--sp-text);
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.sp-restart-btn:hover {
    background: var(--sp-surface);
}

.sp-loading {
    width: 100%;
    height: min(740px, calc(100vh - 170px));
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--sp-text-2);
    font-size: 0.9rem;
}

.sp-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--sp-border);
    border-top-color: var(--sp-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Sidebar ---- */

.sp-sidebar {
    padding-top: 4px;
}

.sp-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sp-sidebar__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sp-text-2);
}

.sp-sidebar__count {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 999px;
    padding: 1px 9px;
    color: var(--sp-text-2);
}

.sp-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-sidebar__empty {
    font-size: 0.82rem;
    color: var(--sp-text-3);
    padding: 6px 2px;
}

/* Sidebar item */

.sp-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-sm);
    padding: 9px 12px;
}

.sp-list-item__info {
    flex: 1;
    min-width: 0;
}

.sp-list-item__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-list-item__meta {
    font-size: 0.74rem;
    color: var(--sp-text-2);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-list-item__remove {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(240, 94, 114, 0.3);
    color: var(--sp-miss);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.12s;
    line-height: 1.5;
}

.sp-list-item__remove:hover {
    background: rgba(240, 94, 114, 0.1);
}

/* ---- Keyboard hint ---- */

.sp-hint {
    margin-top: 14px;
    text-align: center;
    font-size: 0.74rem;
    color: var(--sp-text-3);
    letter-spacing: 0.06em;
}

/* ---- Swipe feedback overlays ---- */

.sp-card[data-swipe="pass"] .profile-header {
    box-shadow: inset 0 0 40px rgba(240, 94, 114, 0.12);
}

.sp-card[data-swipe="like"] .profile-header {
    box-shadow: inset 0 0 40px rgba(61, 214, 140, 0.12);
}

/* ---- Responsive ---- */

@media (max-width: 860px) {
    .sp-layout {
        grid-template-columns: 1fr;
    }

    .sp-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: start;
    }

    .sp-sidebar__head {
        grid-column: span 1;
    }
}

@media (max-width: 560px) {
    .sp-shell {
        width: calc(100vw - 20px);
        padding: 14px 0 60px;
    }

    .sp-topbar {
        margin-bottom: 18px;
    }

    .sp-card {
        height: calc(100svh - 140px);
        border-radius: 20px;
    }

    .sp-empty {
        height: calc(100svh - 140px);
        border-radius: 20px;
    }

    .profile-actions {
        padding: 11px 12px 12px;
        gap: 8px;
    }

    .action-btn {
        min-height: 50px;
        border-radius: 12px;
    }

    .stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .sp-card {
        border-radius: 16px;
    }

    .profile-player-name {
        font-size: 1.25rem;
    }
}
