/* [project]/app/styles/tournament.css [app-client] (css) */
.tournament-page {
  background: var(--bg-primary);
}

.tournament-hero {
  background: linear-gradient(180deg, #0a0a0f 0%, var(--bg-primary) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.tournament-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-glow {
  background: radial-gradient(50% 50%, #f0b90b26 0%, #0000 70%);
  width: 150%;
  height: 100%;
  animation: 4s ease-in-out infinite alternate heroGlowPulse;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

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

  100% {
    opacity: 1;
    transform: translateX(-50%)scale(1.1);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

@keyframes floatParticle {
  0%, 100% {
    opacity: 0;
    transform: translateY(0)translateX(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-200px)translateX(50px);
  }
}

.tournament-hero__content {
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.tournament-hero__badge {
  color: var(--color-primary);
  letter-spacing: 2px;
  background: linear-gradient(135deg, #f0b90b33 0%, #f0b90b0d 100%);
  border: 1px solid #f0b90b4d;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.tournament-hero__badge i {
  font-size: 14px;
}

.tournament-hero__title {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

.tournament-hero__title .gradient-text {
  background: linear-gradient(90deg, #f0b90b 0%, #fcd535 50%, #f0b90b 100%) 0 0 / 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s linear infinite shimmer;
}

@keyframes shimmer {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.tournament-hero__desc {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.7;
}

.tournament-hero__stats {
  justify-content: center;
  gap: 60px;
  display: flex;
}

.hero-stat {
  text-align: center;
}

.hero-stat__value {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--color-primary);
  display: block;
}

.hero-stat__label {
  color: var(--text-tertiary);
  margin-top: 4px;
  font-size: 13px;
}

.announcement-ticker {
  background: #f0b90b1a;
  border-top: 1px solid #f0b90b33;
  border-bottom: 1px solid #f0b90b33;
  padding: 12px 0;
}

.announcement-ticker__inner {
  align-items: center;
  gap: 16px;
  display: flex;
}

.announcement-ticker__label {
  color: var(--color-primary);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.announcement-ticker__content {
  flex: 1;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.announcement-ticker__item {
  white-space: nowrap;
  color: var(--text-secondary);
  opacity: 0;
  font-size: 14px;
  transition: opacity .5s;
  position: absolute;
}

.announcement-ticker__item:first-child {
  opacity: 1;
}

.tournament-filters {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  padding: 16px 0;
  position: sticky;
  top: 64px;
}

.tournament-filters .container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.filter-tabs {
  gap: 8px;
  display: flex;
}

.filter-tab {
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #0a0a0f;
}

.filter-sort select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
}

.tournament-section {
  padding: 60px 0;
}

.tournament-section--featured {
  background: var(--bg-primary);
}

.tournament-section--leaderboard {
  background: var(--bg-secondary);
}

.tournament-section--upcoming {
  background: var(--bg-primary);
}

.tournament-section--rewards {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 80px 0;
}

.tournament-section--ended {
  background: var(--bg-secondary);
}

.section-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.section-header--center {
  text-align: center;
  flex-direction: column;
  margin-bottom: 48px;
}

.section-title {
  color: var(--text-primary);
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
}

.section-title i {
  color: var(--color-primary);
}

.section-desc {
  color: var(--text-secondary);
  margin-top: 8px;
  font-size: 16px;
}

.live-dot {
  background: var(--color-long);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: 1.5s ease-in-out infinite livePulse;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.2);
  }
}

.section-link {
  color: var(--color-primary);
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.section-link:hover {
  text-decoration: underline;
}

.tournament-featured-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

.tournament-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.tournament-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px #0000004d;
}

.tournament-card--main {
  background: linear-gradient(135deg, #f0b90b1a 0%, #0000 50%);
  border-color: #f0b90b4d;
  grid-column: span 2;
  padding: 32px;
}

.tournament-card__badge {
  color: #0a0a0f;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  display: flex;
  position: absolute;
  top: -12px;
  right: 24px;
  box-shadow: 0 4px 12px #0000004d;
}

.tournament-card--main .tournament-card__badge {
  width: 56px;
  height: 56px;
  font-size: 24px;
}

.tournament-card__header {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.tournament-card__type {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 600;
}

.tournament-card__status {
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.tournament-card__status--active {
  color: var(--color-long);
  background: #16c78433;
}

.tournament-card__status--registration {
  color: var(--color-primary);
  background: #f0b90b33;
}

.tournament-card__status--upcoming {
  color: #6495ed;
  background: #6495ed33;
}

.tournament-card__status--ended {
  color: var(--text-tertiary);
  background: #80808033;
}

.tournament-card__title {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.tournament-card--main .tournament-card__title {
  font-size: 28px;
}

.tournament-card__subtitle {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
}

.tournament-card__prize {
  margin-bottom: 20px;
}

.prize-label {
  color: var(--text-tertiary);
  margin-bottom: 4px;
  font-size: 12px;
  display: block;
}

.prize-amount {
  align-items: baseline;
  gap: 4px;
  display: flex;
}

.prize-currency {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
}

.prize-value {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--color-primary);
}

.tournament-card--main .prize-value {
  font-size: 48px;
}

.prize-unit {
  color: var(--text-tertiary);
  margin-left: 4px;
  font-size: 14px;
}

.tournament-card__rewards {
  background: #0003;
  border-radius: 12px;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  display: flex;
}

.reward-tier {
  text-align: center;
  background: var(--bg-tertiary);
  border-radius: 8px;
  flex: 1;
  padding: 12px;
}

.reward-tier--1 {
  background: linear-gradient(135deg, #ffd70033 0%, #ffd7000d 100%);
  border: 1px solid #ffd7004d;
}

.reward-tier--2 {
  background: linear-gradient(135deg, #c0c0c033 0%, #c0c0c00d 100%);
  border: 1px solid #c0c0c04d;
}

.reward-tier--3 {
  background: linear-gradient(135deg, #cd7f3233 0%, #cd7f320d 100%);
  border: 1px solid #cd7f324d;
}

.reward-tier__rank {
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-size: 12px;
  display: block;
}

.reward-tier--1 .reward-tier__rank {
  color: gold;
}

.reward-tier--1 .reward-tier__rank i {
  font-size: 16px;
}

.reward-tier__amount {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-primary);
  display: block;
}

.tournament-card__info {
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.info-item {
  color: var(--text-secondary);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: flex;
}

.info-item i {
  color: var(--text-tertiary);
}

.tournament-card__progress {
  margin-bottom: 20px;
}

.progress-bar {
  background: var(--bg-tertiary);
  border-radius: 3px;
  height: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}

.progress-bar__fill {
  background: linear-gradient(90deg, var(--color-primary) 0%, #fcd535 100%);
  border-radius: 3px;
  height: 100%;
  transition: width .3s;
}

.progress-labels {
  color: var(--text-tertiary);
  justify-content: space-between;
  font-size: 11px;
  display: flex;
}

.tournament-card__actions {
  margin-top: auto;
}

.leaderboard-tabs {
  gap: 8px;
  display: flex;
}

.leaderboard-tab {
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
}

.leaderboard-tab:hover {
  border-color: var(--color-primary);
}

.leaderboard-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #0a0a0f;
}

.leaderboard-preview {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
}

.leaderboard-podium {
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  padding: 32px 0;
  display: flex;
}

.podium-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 180px;
  transition: all var(--transition-normal);
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  display: flex;
  position: relative;
}

.podium-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px #0000004d;
}

.podium-item--1 {
  background: linear-gradient(135deg, #ffd70026 0%, #ffd7000d 100%);
  border-color: #ffd7004d;
  order: 2;
  width: 200px;
  padding: 32px;
}

.podium-item--2 {
  order: 1;
}

.podium-item--3 {
  order: 3;
}

.podium-crown {
  color: gold;
  font-size: 32px;
  animation: 2s ease-in-out infinite crownBounce;
  position: absolute;
  top: -20px;
}

@keyframes crownBounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.podium-avatar {
  border: 3px solid var(--border-color);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  overflow: hidden;
}

.podium-item--1 .podium-avatar {
  border-color: gold;
  width: 80px;
  height: 80px;
}

.podium-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.podium-info {
  text-align: center;
}

.podium-name {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
  display: block;
}

.podium-pnl {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.podium-item--1 .podium-pnl {
  font-size: 24px;
}

.podium-rank {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  position: absolute;
  bottom: -12px;
}

.podium-item--1 .podium-rank {
  color: #0a0a0f;
  background: gold;
  border-color: gold;
}

.podium-item--2 .podium-rank {
  color: #0a0a0f;
  background: silver;
  border-color: silver;
}

.podium-item--3 .podium-rank {
  color: #0a0a0f;
  background: #cd7f32;
  border-color: #cd7f32;
}

.leaderboard-table-wrapper {
  overflow-x: auto;
}

.leaderboard-table {
  border-collapse: collapse;
  width: 100%;
}

.leaderboard-table th, .leaderboard-table td {
  text-align: left;
  padding: 14px 16px;
}

.leaderboard-table th {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: 600;
}

.leaderboard-table td {
  border-bottom: 1px solid var(--border-color);
}

.leaderboard-table tr:hover td {
  background: var(--bg-secondary);
}

.rank-num {
  background: var(--bg-tertiary);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.rank-num--top {
  background: linear-gradient(135deg, var(--color-primary) 0%, #fcd535 100%);
  color: #0a0a0f;
}

.trader-cell {
  align-items: center;
  gap: 10px;
  display: flex;
}

.trader-avatar {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.trader-name {
  font-weight: 500;
}

.leaderboard-footer {
  text-align: center;
  margin-top: 24px;
}

.tournament-list {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.tournament-list-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  border-radius: 12px;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  display: flex;
}

.tournament-list-item:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.tournament-list-item__badge {
  color: #0a0a0f;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  display: flex;
}

.tournament-list-item__info {
  flex: 1;
}

.tournament-list-item__meta {
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.type-badge {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
  font-weight: 600;
}

.status-badge {
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
}

.status-badge--upcoming {
  color: #6495ed;
  background: #6495ed33;
}

.status-badge--registration {
  color: var(--color-primary);
  background: #f0b90b33;
}

.status-badge--active {
  color: var(--color-long);
  background: #16c78433;
}

.status-badge--ended {
  color: var(--text-tertiary);
  background: #80808033;
}

.tournament-list-item__title {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.tournament-list-item__subtitle {
  color: var(--text-secondary);
  font-size: 13px;
}

.tournament-list-item__details {
  gap: 32px;
  display: flex;
}

.detail-item {
  text-align: center;
}

.detail-label {
  color: var(--text-tertiary);
  margin-bottom: 4px;
  font-size: 11px;
  display: block;
}

.detail-value {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.detail-value.prize {
  color: var(--color-primary);
}

.tournament-list-item__action {
  flex-shrink: 0;
}

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

.reward-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-normal);
  border-radius: 16px;
  padding: 32px;
}

.reward-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #0003;
}

.reward-card--prize {
  border-color: #f0b90b4d;
}

.reward-card--badge {
  border-color: #8b5cf64d;
}

.reward-card--vip {
  border-color: #16c7844d;
}

.reward-card__icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, #fcd535 100%);
  color: #0a0a0f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  font-size: 28px;
  display: flex;
}

.reward-card--badge .reward-card__icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.reward-card--vip .reward-card__icon {
  background: linear-gradient(135deg, var(--color-long) 0%, #34d399 100%);
}

.reward-card__title {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.reward-card__desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
}

.reward-card__example {
  text-align: left;
}

.example-row {
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

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

.example-row .rank {
  color: var(--text-secondary);
  align-items: center;
  gap: 6px;
  font-size: 14px;
  display: flex;
}

.example-row .rank--1 {
  color: gold;
}

.example-row .rank--2 {
  color: silver;
}

.example-row .rank--3 {
  color: #cd7f32;
}

.example-row .percent {
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--color-primary);
}

.reward-card__badges {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  display: grid;
}

.badge-item {
  background: var(--bg-tertiary);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  display: flex;
}

.badge-item i {
  font-size: 24px;
}

.badge-item span {
  font-size: 12px;
  font-weight: 600;
}

.badge-item--gold {
  color: gold;
}

.badge-item--silver {
  color: silver;
}

.badge-item--bronze {
  color: #cd7f32;
}

.badge-item--special {
  color: #ff6b6b;
}

.reward-card__list {
  text-align: left;
  list-style: none;
}

.reward-card__list li {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  display: flex;
}

.reward-card__list li:last-child {
  border-bottom: none;
}

.reward-card__list i {
  color: var(--color-long);
}

.ended-tournaments-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  display: grid;
}

.ended-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  border-radius: 12px;
  padding: 20px;
}

.ended-card:hover {
  border-color: var(--text-tertiary);
}

.ended-card__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.ended-date {
  color: var(--text-tertiary);
  font-size: 11px;
}

.ended-card__title {
  color: var(--text-primary);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.ended-card__stats {
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.ended-card__stats .stat {
  flex: 1;
}

.ended-card__stats .stat-value {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mono);
  display: block;
}

.ended-card__stats .stat-label {
  color: var(--text-tertiary);
  font-size: 11px;
}

.ended-card__link {
  color: var(--text-secondary);
  align-items: center;
  gap: 4px;
  font-size: 13px;
  display: flex;
}

.ended-card__link:hover {
  color: var(--color-primary);
}

.tournament-cta {
  text-align: center;
  background: linear-gradient(135deg, #f0b90b26 0%, #0000 50%);
  padding: 80px 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 700;
}

.cta-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
}

.cta-buttons {
  justify-content: center;
  gap: 16px;
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .tournament-featured-grid {
    grid-template-columns: 1fr;
  }

  .tournament-card--main {
    grid-column: span 1;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .tournament-hero {
    padding: 80px 0 60px;
  }

  .tournament-hero__title {
    font-size: 36px;
  }

  .tournament-hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat {
    flex: 0 0 45%;
  }

  .filter-tabs {
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .filter-tab {
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 13px;
  }

  .leaderboard-podium {
    flex-wrap: wrap;
  }

  .podium-item {
    width: 140px;
  }

  .podium-item--1 {
    flex-basis: 100%;
    order: 0;
    width: 160px;
  }

  .tournament-list-item {
    flex-wrap: wrap;
  }

  .tournament-list-item__details {
    border-top: 1px solid var(--border-color);
    flex-basis: 100%;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
  }

  .tournament-list-item__action {
    flex-basis: 100%;
    margin-top: 12px;
  }

  .tournament-list-item__action .btn {
    width: 100%;
  }

  .ended-tournaments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=app_styles_tournament_0cahogq.css.map*/