body {
  padding: 20px;
}

/* ===== Info Banner ===== */
.info-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--booked-bg);
  border: 1px solid var(--booked-border);
  border-radius: 14px;
  margin-bottom: 32px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 83, 0.2),
    rgba(212, 168, 83, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.info-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Month Navigation ===== */
.month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.month-title {
  font-size: 24px;
  font-weight: 700;
  min-width: 220px;
  text-align: center;
}

.nav-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: scale(1.05);
}

/* ===== Legend ===== */
.legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

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

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.booked {
  background: var(--gold);
}

.legend-dot.pending {
  background: var(--pending);
}

.legend-dot.available {
  background: var(--success);
}

.legend-dot.past {
  background: var(--text-secondary);
  opacity: 0.4;
}

/* ===== Friday Cards Grid ===== */
.fridays-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

/* ===== Friday Card ===== */
.friday-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.friday-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Card states */
.friday-card.booked {
  background: var(--booked-bg);
  border-color: var(--booked-border);
}

.friday-card.pending {
  background: var(--pending-bg);
  border-color: var(--pending-border);
}

.friday-card.available {
  background: var(--available-bg);
  border-color: var(--available-border);
}

.friday-card.past {
  background: var(--past-bg);
  border-color: var(--past-border);
  opacity: 0.6;
}

.friday-card.past:hover {
  opacity: 0.8;
}

.friday-card.today {
  border-width: 2px;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
}

.friday-card.today.booked {
  border-color: var(--gold);
}

.friday-card.today.available {
  border-color: var(--success);
}

.friday-card.today.pending {
  border-color: var(--pending);
}

/* Date Column */
.friday-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}

.friday-day-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.friday-day-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.friday-month-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.friday-card.booked .friday-day-num {
  color: var(--gold-light);
}

.friday-card.pending .friday-day-num {
  color: var(--pending);
}

.friday-card.available .friday-day-num {
  color: var(--success);
}

.friday-card.past .friday-day-num {
  color: var(--text-secondary);
}

/* Info Column */
.friday-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.friday-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.booked {
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold-light);
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--pending);
}

.status-badge.available {
  background: var(--success-dim);
  color: var(--success);
}

.status-badge.past {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.today-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #b8862d);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Next upcoming Friday - standout card */
.friday-card.next {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, var(--gold), #065fd4, var(--gold)) border-box;
  box-shadow:
    0 0 24px rgba(212, 168, 83, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
  position: relative;
  overflow: visible;
}

.friday-card.next:hover {
  transform: scale(1.02) translateX(4px);
  box-shadow:
    0 0 32px rgba(212, 168, 83, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.4);
}

.friday-card.next .friday-date {
  border-right-color: rgba(212, 168, 83, 0.3);
}

.next-ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), #b8862d);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px 8px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
  animation: ribbonGlow 2.5s ease-in-out infinite;
}

@keyframes ribbonGlow {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.5);
  }
}

.next-ribbon.today-ribbon {
  background: linear-gradient(135deg, var(--success), #0a9b6e);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: todayRibbonGlow 2.5s ease-in-out infinite;
}

@keyframes todayRibbonGlow {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
  }
}

/* Sponsor text */
.friday-sponsor {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.friday-card.booked .friday-sponsor {
  color: var(--text-primary);
  font-weight: 500;
}

.friday-card.booked .friday-sponsor i {
  color: var(--gold);
}

.friday-card.pending .friday-sponsor {
  color: var(--text-primary);
  font-weight: 500;
}

.friday-card.pending .friday-sponsor i {
  color: var(--pending);
}

.friday-card.available .friday-sponsor {
  color: var(--success);
  opacity: 0.7;
  font-size: 14px;
}

/* ===== Book Button ===== */
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-top: 8px;
  background: var(--success);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.book-btn:hover {
  background: #0dd692;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.book-btn:active {
  transform: translateY(0);
}

/* ===== Submit Booking Button ===== */
.btn-book {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
  position: relative;
  overflow: hidden;
  font-family: inherit;
  margin-top: 8px;
}

.btn-book::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-book:hover::before {
  width: 300px;
  height: 300px;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.4);
}

.btn-book:active {
  transform: translateY(0);
}

.btn-book:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-book-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .month-title {
    font-size: 20px;
    min-width: 180px;
  }

  .friday-card {
    padding: 16px;
    gap: 16px;
  }

  .friday-date {
    min-width: 64px;
    padding-right: 16px;
  }

  .friday-day-num {
    font-size: 28px;
  }

  .info-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .friday-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .friday-date {
    flex-direction: row;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 12px;
    width: 100%;
    min-width: auto;
  }

  .friday-day-num {
    font-size: 24px;
  }

  .legend {
    gap: 16px;
  }
}
