/* ============================================================
   VELI-PORTAL.CSS — Ayyıldız Spor — Veli Portalı
   Dark theme, kırmızı accent, premium tasarım
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --dark-900: #020617;
  --dark-800: #0c1425;
  --dark-700: #0f172a;
  --dark-600: #1a2a47;
  --red:       #c1121f;
  --red-light: #ff4d5e;
  --red-glow:  rgba(193,18,31,0.35);
  --gold:      #d4af37;
  --cyan:      #22b8c7;
  --green:     #10b981;
  --amber:     #f59e0b;
  --white-88:  rgba(255,255,255,0.88);
  --white-70:  rgba(255,255,255,0.70);
  --white-45:  rgba(255,255,255,0.45);
  --white-12:  rgba(255,255,255,0.12);
  --white-06:  rgba(255,255,255,0.06);
  --card-bg:   rgba(15,23,42,0.8);
  --border:    rgba(255,255,255,0.08);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px var(--red-glow);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.1); }
  66%       { transform: translate(-20px, 20px) scale(0.9); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}
@keyframes barFill {
  from { width: 0; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.veli-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
  animation: fadeUp 0.6s ease both;
}

/* ============================================================
   HEADER
   ============================================================ */
.veli-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
  border: 1px solid var(--white-12);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.veli-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light), var(--gold));
}

.veli-header::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(193,18,31,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.veli-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.veli-header-left img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(193,18,31,0.4));
  flex-shrink: 0;
}

.veli-welcome {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.veli-subtitle {
  font-size: 0.8rem;
  color: var(--white-45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.veli-header-right {
  position: relative;
  z-index: 1;
}

.veli-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(193,18,31,0.15);
  border: 1px solid rgba(193,18,31,0.3);
  border-radius: var(--radius-md);
  color: #ff7d87;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.veli-logout-btn:hover {
  background: rgba(193,18,31,0.25);
  border-color: rgba(193,18,31,0.5);
  color: #fff;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.veli-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.veli-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  color: var(--white-70);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.veli-nav-link:hover {
  background: var(--white-06);
  color: #fff;
}

.veli-nav-link.active {
  background: linear-gradient(135deg, var(--red), rgba(193,18,31,0.8));
  color: #fff;
  box-shadow: 0 4px 15px rgba(193,18,31,0.35);
}

/* ============================================================
   PAGE TITLE
   ============================================================ */
.veli-page-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   CARDS
   ============================================================ */
.veli-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.5s ease both;
}

.veli-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-88);
  background: rgba(255,255,255,0.02);
}

.veli-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-light);
  text-decoration: none;
  transition: color 0.2s;
}

.veli-card-link:hover {
  color: #fff;
}

/* ============================================================
   STAT GRID
   ============================================================ */
.veli-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.veli-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.veli-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background var(--transition);
}

.veli-stat-success::before { background: linear-gradient(90deg, var(--green), rgba(16,185,129,0.5)); }
.veli-stat-danger::before  { background: linear-gradient(90deg, var(--red), rgba(193,18,31,0.5)); }
.veli-stat-warn::before    { background: linear-gradient(90deg, var(--amber), rgba(245,158,11,0.5)); }

.veli-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-color: var(--white-12);
}

.veli-stat-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.veli-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.veli-stat-success .veli-stat-num { color: #34d399; }
.veli-stat-danger  .veli-stat-num { color: #f87171; }
.veli-stat-warn    .veli-stat-num { color: #fbbf24; }

.veli-stat-label {
  font-size: 0.8rem;
  color: var(--white-45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ============================================================
   PLAYER CARD (Dashboard)
   ============================================================ */
.veli-player-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
  border: 1px solid var(--white-12);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.veli-player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light), var(--gold));
}

.veli-player-card::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(193,18,31,0.10) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.veli-player-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(193,18,31,0.4);
  box-shadow: 0 0 0 2px rgba(193,18,31,0.15), 0 8px 24px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.veli-player-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), rgba(193,18,31,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(193,18,31,0.35);
  position: relative;
  z-index: 1;
}

.veli-player-info {
  position: relative;
  z-index: 1;
  flex: 1;
}

.veli-player-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.veli-player-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, rgba(193,18,31,0.25), rgba(193,18,31,0.10));
  border: 1px solid rgba(193,18,31,0.3);
  border-radius: 50px;
  color: #ff7d87;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.5rem;
}

.veli-player-pos {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  background: var(--white-06);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--white-70);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   TWO COLUMN GRID
   ============================================================ */
.veli-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   PAYMENT ROWS
   ============================================================ */
.veli-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.veli-payment-row:last-child {
  border-bottom: none;
}

.veli-payment-row:hover {
  background: var(--white-06);
}

.veli-payment-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white-88);
  margin-bottom: 0.2rem;
}

.veli-payment-amount {
  font-size: 0.85rem;
  color: var(--white-45);
}

/* ============================================================
   BADGES
   ============================================================ */
.veli-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.veli-badge-paid {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
}

.veli-badge-pending {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fbbf24;
}

.veli-badge-overdue {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ============================================================
   MATCH LIST
   ============================================================ */
.veli-match-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.veli-match-item:last-child {
  border-bottom: none;
}

.veli-match-item:hover {
  background: var(--white-06);
}

.veli-match-date {
  font-size: 0.8rem;
  color: var(--white-45);
  font-weight: 600;
  white-space: nowrap;
  min-width: 64px;
  padding-top: 2px;
}

.veli-match-date-big {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
  min-width: 48px;
  text-align: center;
}

.veli-match-info {
  flex: 1;
}

.veli-match-teams {
  font-size: 0.95rem;
  color: var(--white-88);
  font-weight: 600;
}

.veli-match-teams-main {
  font-size: 1rem;
  color: var(--white-88);
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.veli-match-teams-main strong {
  color: #fff;
}

.veli-match-meta {
  font-size: 0.82rem;
  color: var(--white-45);
  line-height: 1.5;
}

.veli-match-loc {
  font-size: 0.82rem;
  color: var(--white-45);
  margin-top: 0.25rem;
}

.veli-vs {
  display: inline-block;
  padding: 0 0.5rem;
  color: var(--red-light);
  font-weight: 800;
}

.veli-ev-tag {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 4px;
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  vertical-align: middle;
  margin-left: 0.4rem;
}

.veli-dep-tag {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 4px;
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* Match upcoming / result states */
.veli-match-upcoming {
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.veli-match-upcoming:hover {
  border-left-color: var(--red);
}

.veli-match-win    { border-left: 3px solid var(--green); }
.veli-match-loss   { border-left: 3px solid var(--red); }
.veli-match-draw   { border-left: 3px solid var(--amber); }

.veli-match-result-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.veli-res-win  { background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.35); color: #34d399; }
.veli-res-loss { background: rgba(239,68,68,0.2);  border: 1px solid rgba(239,68,68,0.35);  color: #f87171; }
.veli-res-draw { background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.35); color: #fbbf24; }

/* ============================================================
   TABLE (Aidat)
   ============================================================ */
.veli-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.veli-table thead tr {
  border-bottom: 2px solid var(--border);
}

.veli-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.veli-table td {
  padding: 1rem 1.5rem;
  color: var(--white-88);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.veli-table tbody tr:last-child td {
  border-bottom: none;
}

.veli-table tbody tr:hover td {
  background: var(--white-06);
}

.veli-row-danger td {
  background: rgba(239,68,68,0.04);
}

.veli-row-danger td:first-child {
  border-left: 3px solid rgba(239,68,68,0.5);
  padding-left: calc(1.5rem - 3px);
}

/* ============================================================
   ATTENDANCE (Yoklama)
   ============================================================ */
.veli-month-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.5s ease both;
}

.veli-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem 0.9rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.veli-month-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.veli-month-stats {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-70);
}

.veli-attendance-bar-wrap {
  height: 5px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.veli-attendance-bar {
  height: 100%;
  border-radius: 0 4px 4px 0;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
  animation: barFill 1.2s ease both;
}

.veli-session-list {
  padding: 0.5rem 0;
}

.veli-session-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.veli-session-row:last-child {
  border-bottom: none;
}

.veli-session-row:hover {
  background: var(--white-06);
}

.veli-session-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.veli-session-date {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white-88);
  min-width: 36px;
}

.veli-session-type {
  font-size: 0.85rem;
  color: var(--white-45);
}

.veli-present { background: rgba(16,185,129,0.04); }
.veli-absent  { background: rgba(239,68,68,0.04); }
.veli-unknown { background: transparent; }

.veli-present .veli-session-date { color: #34d399; }
.veli-absent  .veli-session-date { color: #f87171; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.veli-empty {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white-45);
  font-size: 0.9rem;
}

.veli-empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--white-45);
  font-size: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

/* ============================================================
   LOGIN — VELİ OVERRIDE
   ============================================================ */
.veli-login-hero .auth-hero-badge {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  border-color: rgba(212,175,55,0.35);
}

.veli-login-info {
  display: flex;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: rgba(34,184,199,0.08);
  border: 1px solid rgba(34,184,199,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.6;
}

.veli-login-info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.veli-portal-alt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: var(--white-06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--white-70);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.veli-portal-alt-link:hover {
  background: var(--white-12);
  color: #fff;
}

.veli-portal-alt-link strong {
  color: var(--red-light);
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .veli-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .veli-grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .veli-container {
    padding: 1.5rem 1rem 4rem;
  }

  .veli-header {
    padding: 1.25rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .veli-welcome {
    font-size: 0.95rem;
  }

  .veli-player-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    gap: 1rem;
  }

  .veli-player-photo,
  .veli-player-avatar {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }

  .veli-player-name {
    font-size: 1.3rem;
  }

  .veli-nav {
    gap: 0.25rem;
    padding: 0.4rem;
    border-radius: var(--radius-md);
  }

  .veli-nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
  }

  .veli-stat-num {
    font-size: 1.3rem;
  }

  .veli-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .veli-card-header {
    padding: 1rem 1.25rem;
  }

  .veli-payment-row,
  .veli-match-item {
    padding: 0.875rem 1.25rem;
  }

  .veli-month-header {
    padding: 0.875rem 1.25rem;
  }

  .veli-session-row {
    padding: 0.6rem 1.25rem;
  }

  .veli-table th,
  .veli-table td {
    padding: 0.875rem 1rem;
  }
}

@media (max-width: 480px) {
  .veli-stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .veli-stat {
    padding: 1.1rem 0.875rem;
  }

  .veli-stat-num {
    font-size: 1.15rem;
  }

  .veli-stat-label {
    font-size: 0.72rem;
  }

  .veli-player-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .veli-logout-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.82rem;
  }
}


/* ===== DONDURMA BANERI ===== */
.freeze-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-left: 4px solid #38bdf8;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.freeze-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.freeze-info { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.freeze-info strong { color: #38bdf8; font-size: 0.95rem; font-weight: 700; }
.freeze-info span { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.freeze-info span b { color: #fff; }
.freeze-note {
  font-size: 0.78rem;
  color: rgba(56, 189, 248, 0.7);
  font-style: italic;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 600px) {
  .freeze-banner { flex-wrap: wrap; }
  .freeze-note { white-space: normal; width: 100%; text-align: left; }
}
