.auth-page,
.dashboard-page {
  min-height: calc(100vh - 68px);
  padding: 48px 7%;
  background:
    radial-gradient(circle at 20% 5%, rgba(33,245,181,0.18), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(96,165,250,0.13), transparent 24%),
    #07111f;
}

.auth-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 30px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.38);
}

.eyebrow {
  color: #21f5b5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.auth-copy h1,
.dashboard-hero h1 {
  margin: 6px 0 10px;
  color: #f8fafc;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.95;
  letter-spacing: -1px;
}

.auth-copy p,
.dashboard-hero p {
  color: #cbd5e1;
  font-weight: 700;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  margin: 24px 0;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
}

.auth-tab {
  padding: 12px;
  color: #cbd5e1;
  font-weight: 900;
  background: transparent;
  border-radius: 9px;
}

.auth-tab.active {
  color: #07111f;
  background: #21f5b5;
}

.auth-form {
  display: none;
  gap: 14px;
}

.auth-form.active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  padding: 14px 13px;
  color: #f8fafc;
  background: #07111f;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  outline: none;
}

.auth-form input:focus {
  border-color: #21f5b5;
  box-shadow: 0 0 0 3px rgba(33,245,181,0.16);
}

.auth-submit,
.nav-button {
  display: inline-grid;
  place-items: center;
  padding: 14px 16px;
  color: #07111f;
  font-weight: 900;
  text-align: center;
  background: #21f5b5;
  border-radius: 10px;
  text-decoration: none;
}

.auth-submit.inline {
  margin-top: 14px;
}

.nav-button {
  padding: 9px 13px;
}

.auth-message {
  min-height: 22px;
  margin-top: 14px;
  color: #fca5a5;
  font-weight: 800;
}

.dashboard-hero {
  max-width: 1080px;
  margin: 0 auto 24px;
}

.dashboard-grid,
.entries-panel {
  max-width: 1080px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dash-card,
.entries-panel,
.empty-dashboard,
.entry-row {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}

.dash-card {
  padding: 20px;
}

.dash-card span {
  color: #94a3b8;
  font-weight: 800;
}

.dash-card strong {
  display: block;
  color: #21f5b5;
  font-size: 38px;
  font-weight: 900;
}

.entries-panel {
  padding: 20px;
}

.entries-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.entries-head h2 {
  font-size: 28px;
}

.play-now.small {
  width: auto;
  padding: 10px 13px;
  margin: 0;
  font-size: 13px;
}

.entries-list {
  display: grid;
  gap: 12px;
}

.entry-row {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.entry-row img {
  max-width: 52px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.25));
}

.entry-row strong,
.entry-row span,
.entry-row small,
.entry-status b,
.entry-status span {
  display: block;
}

.entry-row strong {
  color: #f8fafc;
}

.entry-row span,
.entry-row small,
.entry-status span {
  color: #94a3b8;
}

.entry-status {
  text-align: right;
}

.entry-status b {
  color: #21f5b5;
}

.empty-dashboard {
  padding: 28px;
  text-align: center;
}

.empty-dashboard p {
  color: #94a3b8;
}

@media (max-width: 760px) {
  .auth-page,
  .dashboard-page {
    padding: 24px 4%;
  }

  .auth-card,
  .entries-panel {
    padding: 20px;
  }

  .dashboard-grid,
  .entry-row {
    grid-template-columns: 1fr;
  }

  .entry-row,
  .entry-status {
    text-align: left;
  }

  .entries-head {
    align-items: start;
    flex-direction: column;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }
}

/* Premium dashboard refresh */
.pretty-dashboard {
  padding-top: 34px;
  background:
    radial-gradient(circle at 16% 0%, rgba(33,245,181,0.25), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(59,130,246,0.18), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0b1728 46%, #07111f 100%);
}

.pretty-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(17,24,39,0.96), rgba(15,23,42,0.86)),
    radial-gradient(circle at 70% 25%, rgba(33,245,181,0.16), transparent 24%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.34);
}

.pretty-hero h1 {
  max-width: 800px;
  font-size: clamp(38px, 5.6vw, 72px);
}

.hero-action-card {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: #07111f;
  background: linear-gradient(135deg, #21f5b5, #60a5fa);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 18px 45px rgba(33,245,181,0.16);
}

.hero-action-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-action-card strong {
  font-size: 28px;
  line-height: 1;
}

.hero-action-card a {
  width: fit-content;
  margin-top: 8px;
  padding: 10px 12px;
  color: #fff;
  font-weight: 900;
  background: #07111f;
  border-radius: 999px;
  text-decoration: none;
}

.pretty-stats {
  margin-top: 18px;
  gap: 18px;
}

.stat-glow {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17,24,39,0.98), rgba(15,23,42,0.92));
}

.stat-glow::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  content: "";
  background: radial-gradient(circle, rgba(33,245,181,0.22), transparent 62%);
  border-radius: 50%;
}

.stat-glow strong {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 54px;
  line-height: 1;
}

.stat-glow small {
  position: relative;
  z-index: 1;
  color: #64748b;
  font-weight: 900;
}

.dashboard-two-col {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin: 0 auto;
}

.featured-panel,
.dashboard-side-panel {
  min-width: 0;
}

.featured-panel {
  padding: 22px;
  border-radius: 22px;
  background: rgba(17,24,39,0.94);
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.dashboard-side-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.side-card {
  padding: 20px;
  color: #f8fafc;
  background: rgba(17,24,39,0.94);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}

.side-card h3 {
  margin: 5px 0 8px;
  font-size: 23px;
}

.side-card p {
  color: #94a3b8;
  font-weight: 700;
}

.side-card.compact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #07111f;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 14px;
}

.premium-list {
  gap: 14px;
}

.premium-entry {
  grid-template-columns: 74px minmax(0, 1fr) minmax(160px, auto);
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.98), rgba(17,24,39,0.95));
  border-color: rgba(33,245,181,0.14);
  border-radius: 18px;
  transition: transform 0.2s, border-color 0.2s;
}

.premium-entry:hover {
  transform: translateY(-2px);
  border-color: rgba(33,245,181,0.42);
}

.entry-image-wrap {
  display: grid;
  place-items: center;
  width: 64px;
  height: 82px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.entry-image-wrap img {
  max-width: 54px;
  max-height: 74px;
}

.entry-main-copy strong {
  margin-bottom: 7px;
  font-size: 16px;
}

.coord-pill {
  display: inline-flex !important;
  width: fit-content;
  padding: 6px 10px;
  margin-bottom: 6px;
  color: #07111f !important;
  font-size: 12px;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 999px;
}

.premium-status {
  padding: 10px 12px;
  background: rgba(33,245,181,0.08);
  border: 1px solid rgba(33,245,181,0.18);
  border-radius: 14px;
}

.premium-status b {
  color: #21f5b5;
}

.premium-empty {
  padding: 40px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(33,245,181,0.16), transparent 32%),
    rgba(15,23,42,0.92);
}

.empty-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  color: #07111f;
  font-size: 30px;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 22px;
}

.active-link {
  color: #07111f !important;
  background: #21f5b5 !important;
  border-color: #21f5b5 !important;
}

@media (max-width: 900px) {
  .pretty-hero,
  .dashboard-two-col {
    grid-template-columns: 1fr;
  }

  .pretty-hero {
    padding: 22px;
  }

  .premium-entry {
    grid-template-columns: 1fr;
  }

  .entry-image-wrap {
    width: 82px;
    height: 96px;
  }
}

/* BOTB-style account dashboard */
.account-page {
  min-height: calc(100vh - 68px);
  padding: 34px 5% 54px;
  background:
    radial-gradient(circle at 16% 0%, rgba(33,245,181,0.2), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(96,165,250,0.13), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #0b1728 48%, #07111f 100%);
}

.account-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.account-sidebar,
.account-content {
  background: rgba(17,24,39,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.account-sidebar {
  position: sticky;
  top: 92px;
  padding: 22px;
  border-radius: 20px;
}

.profile-badge {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 12px 8px 22px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #07111f;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #21f5b5, #60a5fa);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(33,245,181,0.1);
}

.profile-badge strong {
  color: #f8fafc;
  font-size: 20px;
}

.profile-badge span {
  max-width: 190px;
  overflow: hidden;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
}

.account-menu {
  display: grid;
  gap: 8px;
}

.account-menu-item {
  width: 100%;
  padding: 12px 13px;
  color: #cbd5e1;
  font-weight: 900;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
}

.account-menu-item:hover,
.account-menu-item.active {
  color: #07111f;
  background: #21f5b5;
}

.account-menu-item.danger {
  color: #fca5a5;
}

.account-menu-item.danger:hover {
  color: #fff;
  background: #ef4444;
}

.account-content {
  min-width: 0;
  padding: 26px;
  border-radius: 24px;
}

.account-title-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.account-title-row h1 {
  margin: 4px 0 8px;
  color: #f8fafc;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 0.95;
  letter-spacing: -1px;
}

.account-subtitle {
  color: #94a3b8;
  font-weight: 750;
}

.dashboard-enter-btn {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  padding: 13px 16px;
  color: #07111f;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(33,245,181,0.14);
}

.compact-stats {
  max-width: none;
  margin-bottom: 20px;
}

.compact-stats .stat-glow {
  min-height: 116px;
  padding: 18px;
}

.compact-stats .stat-glow strong {
  font-size: 42px;
}

.dashboard-view {
  display: none;
}

.dashboard-view.active {
  display: block;
}

.competition-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.competition-tile {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(17,24,39,0.94));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.competition-tile-head {
  width: 100%;
  display: grid;
  grid-template-rows: 150px auto;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
}

.tile-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(33,245,181,0.18), transparent 32%),
    #0f172a;
}

.tile-image img {
  max-width: 100%;
  max-height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.28));
}

.tile-image span {
  color: #21f5b5;
  font-size: 42px;
  font-weight: 900;
}

.tile-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  color: #07111f;
  font-size: 12px;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 999px;
}

.tile-copy {
  position: relative;
  padding: 16px 42px 16px 16px;
}

.tile-copy h3 {
  min-height: 44px;
  color: #f8fafc;
  font-size: 17px;
  line-height: 1.16;
}

.tile-copy p {
  margin: 4px 0 12px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 850;
}

.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile-meta span {
  padding: 6px 8px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 900;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}

.expand-symbol {
  position: absolute;
  right: 15px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #07111f;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 50%;
}

.competition-entries {
  display: none;
  padding: 0 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.competition-tile.open {
  grid-column: span 3;
}

.competition-tile.open .competition-entries {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.competition-entry-line {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) minmax(140px, auto);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.competition-entry-line img {
  max-width: 44px;
  max-height: 58px;
  object-fit: contain;
}

.competition-entry-line strong,
.competition-entry-line span,
.competition-entry-line small,
.competition-entry-line b {
  display: block;
}

.competition-entry-line strong {
  color: #f8fafc;
}

.competition-entry-line span {
  width: fit-content;
  padding: 5px 8px;
  margin: 4px 0;
  color: #07111f;
  font-size: 12px;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 999px;
}

.competition-entry-line small {
  color: #94a3b8;
  font-weight: 750;
}

.competition-entry-line b {
  color: #21f5b5;
  text-align: right;
}

.account-details-card {
  padding: 22px;
  background: rgba(15,23,42,0.94);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
}

.account-details-card h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.account-detail-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.account-detail-row span {
  color: #94a3b8;
  font-weight: 900;
}

.account-detail-row strong {
  max-width: 70%;
  overflow-wrap: anywhere;
  color: #f8fafc;
  text-align: right;
}

.account-details-card p {
  margin-top: 16px;
  color: #94a3b8;
}

.wide-empty {
  grid-column: 1 / -1;
}

.nav-login {
  padding: 9px 13px;
  color: #07111f !important;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 8px;
}

.nav-button.subtle {
  color: #f8fafc;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 980px) {
  .account-shell {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

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

  .competition-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competition-tile.open {
    grid-column: span 2;
  }

  .account-title-row {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .account-page {
    padding: 18px 3% 34px;
  }

  .account-content,
  .account-sidebar {
    padding: 18px;
  }

  .account-menu {
    grid-template-columns: 1fr;
  }

  .compact-stats,
  .competition-card-grid,
  .competition-tile.open,
  .competition-entry-line {
    grid-template-columns: 1fr;
  }

  .competition-tile.open {
    grid-column: span 1;
  }

  .competition-entry-line b {
    text-align: left;
  }

  .account-detail-row {
    display: grid;
  }

  .account-detail-row strong {
    max-width: none;
    text-align: left;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

/* Date-organised dashboard update */
.dashboard-nav-link.active {
  color: #07111f !important;
  background: linear-gradient(135deg, #21f5b5, #60a5fa);
  box-shadow: 0 10px 24px rgba(33,245,181,0.18);
}

.dashboard-main-cta {
  position: relative;
  overflow: hidden;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, #21f5b5 0%, #60a5fa 100%);
  box-shadow: 0 16px 38px rgba(33,245,181,0.2), inset 0 1px 0 rgba(255,255,255,0.35);
}

.dashboard-main-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.dashboard-main-cta:hover::after {
  transform: translateX(120%);
}

.date-board-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 6px 0 18px;
}

.date-board-head h2 {
  margin: 0 0 4px;
  color: #f8fafc;
  font-size: 28px;
}

.date-board-head p {
  color: #94a3b8;
  font-weight: 800;
}

.date-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.date-competition-card {
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(33,245,181,0.13), transparent 32%),
    linear-gradient(180deg, rgba(15,23,42,0.98), rgba(17,24,39,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.25);
}

.date-competition-card.open {
  grid-column: 1 / -1;
}

.date-competition-head {
  width: 100%;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  color: inherit;
  text-align: left;
  background: transparent;
}

.date-preview-stack {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 20%, rgba(33,245,181,0.22), transparent 38%),
    #0b1220;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.date-preview-stack img {
  max-width: 46px;
  max-height: 76px;
  object-fit: contain;
  margin-left: -10px;
  filter: drop-shadow(0 10px 13px rgba(0,0,0,0.34));
}

.date-preview-stack img:first-child {
  margin-left: 0;
}

.date-preview-stack span {
  color: #21f5b5;
  font-size: 36px;
  font-weight: 900;
}

.date-label {
  margin: 0 0 4px;
  color: #21f5b5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.date-card-copy h3 {
  margin: 0 0 12px;
  color: #f8fafc;
  font-size: 22px;
  line-height: 1.08;
}

.date-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.date-card-meta span {
  padding: 7px 9px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}

.date-expand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #07111f;
  font-size: 22px;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 50%;
  transition: transform 0.18s ease;
}

.date-competition-card.open .date-expand-icon {
  transform: rotate(180deg);
}

.date-entry-list {
  display: none;
  gap: 10px;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.date-competition-card.open .date-entry-list {
  display: grid;
  padding-top: 16px;
}

.date-entry-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto minmax(150px, auto);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 14px;
}

.date-entry-img {
  display: grid;
  place-items: center;
  width: 58px;
  height: 66px;
  background: rgba(2,6,23,0.42);
  border-radius: 10px;
}

.date-entry-img img {
  max-width: 46px;
  max-height: 58px;
  object-fit: contain;
}

.date-entry-copy strong,
.date-entry-copy span,
.date-entry-copy small,
.date-entry-coord,
.date-entry-result {
  display: block;
}

.date-entry-copy strong {
  color: #f8fafc;
  font-size: 14px;
}

.date-entry-copy span {
  margin: 3px 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
}

.date-entry-copy small {
  color: #64748b;
  font-weight: 800;
}

.date-entry-coord {
  padding: 8px 10px;
  color: #07111f;
  font-size: 12px;
  font-weight: 900;
  background: #21f5b5;
  border-radius: 999px;
  white-space: nowrap;
}

.date-entry-result {
  color: #21f5b5;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

@media (max-width: 980px) {
  .date-card-grid {
    grid-template-columns: 1fr;
  }

  .date-competition-card.open {
    grid-column: span 1;
  }

  .date-entry-line {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .date-entry-coord,
  .date-entry-result {
    grid-column: 2;
    width: fit-content;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .date-competition-head {
    grid-template-columns: 1fr 34px;
  }

  .date-preview-stack {
    grid-column: 1 / -1;
  }

  .date-card-copy {
    min-width: 0;
  }
}
