/* ── Featured Event Card ──────────────────────────────────── */
.featured-event-section {
  background: radial-gradient(ellipse at top right, rgba(204,0,0,0.15) 0%, var(--black) 60%);
}

.featured-event-card {
  background: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, var(--black-card) 60%);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.featured-event-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204,0,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.featured-event-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.featured-event-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.featured-event-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.featured-event-desc {
  font-size: 0.95rem;
  color: var(--grey-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.featured-event-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-glass);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius-xl);
  animation: float 3s ease-in-out infinite;
}

/* ── Countdown ────────────────────────────────────────────── */
.countdown-grid {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  min-width: 72px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red-primary);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-dark);
  margin-top: 4px;
}

/* ── Upcoming Event Cards ─────────────────────────────────── */
.upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.event-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  background: var(--red-glass);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md);
  flex-shrink: 0;
}

.event-card-date .event-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red-primary);
  line-height: 1;
}

.event-card-date .event-month {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
}

.event-card-body {
  flex: 1;
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.82rem;
  color: var(--grey-dark);
  margin: 4px 0 var(--space-sm);
}

.event-card-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Past Events ─────────────────────────────────────────── */
.past-events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.past-event-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: var(--transition-fast);
}

.past-event-card:hover {
  border-color: rgba(204,0,0,0.2);
}

.past-event-date {
  font-size: 0.82rem;
  color: var(--grey-dark);
  min-width: 130px;
  flex-shrink: 0;
}

.past-event-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.past-event-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.past-event-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red-primary);
  white-space: nowrap;
}

/* ── Event Modal Details ──────────────────────────────────── */
.event-modal-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--black-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--black-border);
}

.event-modal-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--grey-light);
}

.event-modal-detail span:first-child {
  flex-shrink: 0;
  width: 24px;
}

/* ══════════════════════════════════════════════════════════
   FIXTURE SECTION STYLES (new three-section layout)
══════════════════════════════════════════════════════════ */

/* ── Section header with badge ────────────────────────────── */
.fixture-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.fixture-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.fixture-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lions-badge {
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.35);
  color: #ff6666;
}

.slb-badge {
  background: rgba(255,165,0,0.1);
  border: 1px solid rgba(255,165,0,0.3);
  color: #ffb347;
}

.roar-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
}

/* ── Main fixture panel card ──────────────────────────────── */
.fixture-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.lions-panel {
  background: linear-gradient(135deg, rgba(204,0,0,0.14) 0%, var(--black-card) 65%);
  border: 1px solid rgba(204,0,0,0.3);
}

.lions-panel::after {
  content: '🦁';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
}

.slb-panel {
  background: linear-gradient(135deg, rgba(255,140,0,0.1) 0%, var(--black-card) 65%);
  border: 1px solid rgba(255,140,0,0.2);
}

.slb-panel::after {
  content: '🏆';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.05;
  pointer-events: none;
}

.fixture-panel-left {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  flex: 1;
}

.fixture-panel-icon {
  font-size: 3rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.fixture-panel-info {
  flex: 1;
}

.fixture-panel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.fixture-panel-desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 500px;
}

.fixture-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.fixture-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  color: var(--grey-mid);
}

.fixture-panel-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Quick-link tiles ─────────────────────────────────────── */
.fixture-quicklinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.fixture-quicklink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  text-decoration: none;
  color: var(--grey-mid);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.fixture-quicklink:hover {
  border-color: rgba(204,0,0,0.3);
  background: var(--red-glass);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.fixture-quicklink-icon {
  font-size: 1.8rem;
}

/* ── Empty state ──────────────────────────────────────────── */
.events-empty-state {
  text-align: center;
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
}

.events-empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-lg);
}

.events-empty-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.events-empty-text {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto var(--space-xl);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fixture-panel { flex-direction: column; }
  .fixture-panel-actions { flex-direction: row; width: 100%; }
  .fixture-quicklinks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .fixture-section-header { flex-direction: column; align-items: flex-start; }
  .fixture-panel-left { flex-direction: column; }
  .fixture-panel-icon { width: 56px; height: 56px; font-size: 2rem; }
  .fixture-panel-actions { flex-direction: column; }
  .fixture-panel-actions .btn { width: 100%; text-align: center; }
  .fixture-quicklinks { grid-template-columns: repeat(2, 1fr); }
  .featured-event-card { flex-direction: column; }
  .featured-event-badge { display: none; }
  .countdown-grid { flex-wrap: wrap; }
  .countdown-unit { min-width: 60px; padding: var(--space-sm) var(--space-md); }
  .countdown-num  { font-size: 1.6rem; }
  .event-card { flex-direction: column; align-items: flex-start; }
  .event-card-actions { width: 100%; }
  .past-event-info { flex-direction: column; gap: var(--space-xs); }
  .past-event-date { min-width: unset; }
}

.featured-event-section {
  background: radial-gradient(ellipse at top right, rgba(204,0,0,0.15) 0%, var(--black) 60%);
}

.featured-event-card {
  background: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, var(--black-card) 60%);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.featured-event-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204,0,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.featured-event-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.featured-event-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.featured-event-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.featured-event-desc {
  font-size: 0.95rem;
  color: var(--grey-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.featured-event-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-glass);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius-xl);
  animation: float 3s ease-in-out infinite;
}

/* ── Countdown ────────────────────────────────────────────── */
.countdown-grid {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  min-width: 72px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red-primary);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-dark);
  margin-top: 4px;
}

/* ── Upcoming Event Cards ─────────────────────────────────── */
.upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.event-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  background: var(--red-glass);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md);
  flex-shrink: 0;
}

.event-card-date .event-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red-primary);
  line-height: 1;
}

.event-card-date .event-month {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
}

.event-card-body {
  flex: 1;
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.82rem;
  color: var(--grey-dark);
  margin: 4px 0 var(--space-sm);
}

.event-card-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Past Events ─────────────────────────────────────────── */
.past-events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.past-event-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: var(--transition-fast);
}

.past-event-card:hover {
  border-color: rgba(204,0,0,0.2);
}

.past-event-date {
  font-size: 0.82rem;
  color: var(--grey-dark);
  min-width: 130px;
  flex-shrink: 0;
}

.past-event-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.past-event-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.past-event-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red-primary);
  white-space: nowrap;
}

/* ── Event Modal Details ──────────────────────────────────── */
.event-modal-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--black-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--black-border);
}

.event-modal-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--grey-light);
}

.event-modal-detail span:first-child {
  flex-shrink: 0;
  width: 24px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .featured-event-card { flex-direction: column; }
  .featured-event-badge { display: none; }
  .countdown-grid { flex-wrap: wrap; }
  .countdown-unit { min-width: 60px; padding: var(--space-sm) var(--space-md); }
  .countdown-num  { font-size: 1.6rem; }
  .event-card { flex-direction: column; align-items: flex-start; }
  .event-card-actions { width: 100%; }
  .past-event-info { flex-direction: column; gap: var(--space-xs); }
  .past-event-date { min-width: unset; }
}
