/* ============================================================
   AWAKEN – Youth Camp Sulawesi Tengah 2026
   Full Design System + Page Styles
   ============================================================ */

@import url('[fonts.googleapis.com](https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Bebas+Neue&family=Poppins:wght@400;600;700;800&display=swap)');

/* ── Root Tokens ─────────────────────────────────────────── */
:root {
  --color-purple-deep:   #1a0f3c;
  --color-purple-mid:    #2b1a6b;
  --color-purple-light:  #3d2a8a;
  --color-orange-fire:   #e84e0f;
  --color-orange-warm:   #f97316;
  --color-orange-bright: #fb923c;
  --color-yellow-gold:   #f5c518;
  --color-white:         #ffffff;
  --color-white-soft:    #e8e4f0;
  --color-dark-text:     #1a0a00;
  --color-green-active:  #22c55e;
  --color-gray-done:     #6b7280;

  --gradient-orange: linear-gradient(135deg, #c43a06 0%, #e84e0f 40%, #f97316 70%, #fb923c 100%);
  --gradient-purple: linear-gradient(135deg, #1a0f3c 0%, #2b1a6b 50%, #3d2a8a 100%);
  --gradient-hero:   linear-gradient(160deg, #0d0626 0%, #1a0f3c 30%, #2b1a6b 70%, #1a0f3c 100%);

  --font-display: 'Bebas Neue', 'Black Han Sans', Impact, sans-serif;
  --font-body:    'Poppins', sans-serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-hero:  4.5rem;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;
  --radius-pill: 9999px;

  --glow-orange: 0 0 20px rgba(232,78,15,0.6), 0 0 40px rgba(232,78,15,0.3);
  --glow-yellow: 0 0 16px rgba(245,197,24,0.7);
  --glow-purple: 0 0 24px rgba(61,42,138,0.8);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--color-purple-deep);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────── */
.heading-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
}

.heading-xl {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.heading-md {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
}

.body-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-white-soft);
  line-height: 1.75;
}

.label-bold {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-white);
}

.text-caption {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-white-soft);
  letter-spacing: 0.04em;
}

.text-center { text-align: center; }
.text-orange  { color: var(--color-orange-fire); }
.text-yellow  { color: var(--color-yellow-gold); }
.text-white   { color: var(--color-white); }
.text-soft    { color: var(--color-white-soft); }
.text-dark    { color: var(--color-dark-text); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: var(--space-16);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-orange);
  color: var(--color-white);
  box-shadow: var(--glow-orange);
}

.btn-secondary {
  background: var(--color-purple-mid);
  color: var(--color-white);
  border: 2px solid var(--color-purple-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}

.badge-orange { background: var(--color-orange-fire); color: var(--color-white); }
.badge-yellow { background: var(--color-yellow-gold); color: var(--color-dark-text); }
.badge-purple { background: var(--color-purple-light); color: var(--color-white); }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-orange-fire), transparent);
  border: none;
  margin: var(--space-6) 0;
}

/* ── Panel / Cards ───────────────────────────────────────── */
.panel {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

/* ═══════════════════════════════════════════════════════════
   BROADCAST BANNER
═══════════════════════════════════════════════════════════ */
.broadcast-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #c43a06, #e84e0f, #f97316);
  box-shadow: 0 2px 16px rgba(232,78,15,0.5);
  animation: slideDown 0.4s ease;
}

.broadcast-banner.hidden { display: none; }

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.broadcast-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.broadcast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

.broadcast-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.broadcast-title {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: #fff;
}

.broadcast-title::after {
  content: ':';
  margin-right: 0.25rem;
}

.broadcast-title:empty::after { content: ''; }

.broadcast-message {
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.broadcast-close {
  background: rgba(0,0,0,0.2);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.broadcast-close:hover { background: rgba(0,0,0,0.4); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,78,15,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(61,42,138,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(245,197,24,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Particle canvas/pseudo */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.hero-logo {
  width: min(200px, 45vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(232,78,15,0.6)) drop-shadow(0 0 60px rgba(232,78,15,0.3));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-text-img {
  width: min(500px, 85vw);
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════════════════════════════
   COUNTDOWN SECTION
═══════════════════════════════════════════════════════════ */
.countdown-section {
  background: linear-gradient(180deg, #1a0f3c 0%, #2b1a6b 100%);
  padding-block: var(--space-12);
}

.countdown-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card), var(--glow-purple);
  position: relative;
  overflow: hidden;
}

.countdown-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,78,15,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.countdown-state { position: relative; }
.countdown-state.hidden { display: none; }

.countdown-state-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.badge-fire {
  background: linear-gradient(90deg, #c43a06, #e84e0f);
  color: #fff;
  box-shadow: var(--glow-orange);
  animation: badgePulse 2s ease-in-out infinite;
}

.badge-wait {
  background: rgba(245,197,24,0.2);
  color: var(--color-yellow-gold);
  border: 1px solid var(--color-yellow-gold);
}

.badge-done {
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  border: 1px solid #22c55e;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: var(--glow-orange); }
  50%       { box-shadow: 0 0 30px rgba(232,78,15,0.8), 0 0 60px rgba(232,78,15,0.5); }
}

.countdown-event-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.countdown-label {
  font-size: var(--text-sm);
  color: var(--color-white-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.countdown-timer {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  letter-spacing: 0.06em;
  color: var(--color-orange-fire);
  text-shadow: var(--glow-orange);
  line-height: 1;
  margin-top: 0.25rem;
}

#countdown-active .countdown-timer {
  animation: timerTick 1s ease-in-out infinite;
}

@keyframes timerTick {
  0%, 100% { opacity: 1; }
  45%, 55% { opacity: 0.7; }
}

/* ═══════════════════════════════════════════════════════════
   SCHEDULE SECTION
═══════════════════════════════════════════════════════════ */
.schedule-section {
  background: var(--color-purple-deep);
}

/* Tab Nav */
.tab-nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
}

.tab-nav-wrapper::-webkit-scrollbar { display: none; }

.tab-nav {
  display: flex;
  gap: 0.5rem;
  min-width: max-content;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 0;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white-soft);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  position: relative;
  bottom: -2px;
  white-space: nowrap;
}

.tab-btn .tab-date {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.tab-btn:hover {
  color: var(--color-white);
}

.tab-btn.active {
  color: var(--color-orange-fire);
  border-bottom-color: var(--color-orange-fire);
}

/* Schedule Content */
.schedule-content {
  min-height: 300px;
}

.schedule-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem;
  color: var(--color-white-soft);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(232,78,15,0.2);
  border-top-color: var(--color-orange-fire);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Schedule List */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-event {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.schedule-event::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px 0 0 2px;
  transition: background 0.3s;
}

/* Status: active */
.schedule-event.status-active {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.35);
  animation: activeGlow 2s ease-in-out infinite;
}

.schedule-event.status-active::before {
  background: var(--color-green-active);
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

@keyframes activeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(34,197,94,0); }
  50%       { box-shadow: 0 0 16px rgba(34,197,94,0.2); }
}

/* Status: done */
.schedule-event.status-done {
  opacity: 0.45;
}

.schedule-event.status-done::before {
  background: var(--color-gray-done);
}

/* Status: upcoming */
.schedule-event.status-upcoming::before {
  background: var(--color-orange-fire);
}

.schedule-event:hover:not(.status-done) {
  transform: translateX(4px);
  background: rgba(255,255,255,0.07);
}

.event-time {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.event-time-start {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-orange-fire);
  line-height: 1;
}

.status-active .event-time-start { color: var(--color-green-active); }
.status-done   .event-time-start { color: var(--color-gray-done); }

.event-time-end {
  font-size: 0.75rem;
  color: var(--color-white-soft);
  opacity: 0.7;
}

.event-info {}

.event-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  line-height: 1.3;
}

.status-done .event-name { color: var(--color-white-soft); }

.event-status-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-top: 0.35rem;
}

.event-status-badge.s-active {
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.4);
}

.event-status-badge.s-done {
  background: rgba(107,114,128,0.2);
  color: #9ca3af;
  border: 1px solid rgba(107,114,128,0.3);
}

.event-status-badge.s-upcoming {
  background: rgba(232,78,15,0.15);
  color: var(--color-orange-bright);
  border: 1px solid rgba(232,78,15,0.3);
}

/* ── Download Section ────────────────────────────────────── */
.download-section {
  margin-top: var(--space-12);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.download-btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0d0626;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-8) 0;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN STYLES
═══════════════════════════════════════════════════════════ */
.admin-body {
  background: #0f0828;
  min-height: 100vh;
}

/* Login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(232,78,15,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0f0828 0%, #1a0f3c 100%);
}

.admin-login-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-card);
}

/* Layout */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: rgba(0,0,0,0.3);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-header { padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.admin-nav-item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white-soft);
  text-decoration: none;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(232,78,15,0.15);
  color: var(--color-orange-bright);
}

.admin-sidebar-footer { margin-top: auto; }

.admin-main {
  padding: 2rem 2.5rem;
  max-width: 900px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Alerts */
.admin-alert {
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.admin-alert-error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
}

/* Form Elements */
.admin-field { display: flex; flex-direction: column; gap: 0.4rem; }

.admin-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-input,
.admin-textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.admin-input::placeholder,
.admin-textarea::placeholder { color: rgba(255,255,255,0.3); }

.admin-input:focus,
.admin-textarea:focus {
  outline: none;
  border-color: var(--color-orange-fire);
  box-shadow: 0 0 0 3px rgba(232,78,15,0.15);
}

/* Active Broadcast Preview */
.admin-active-broadcast {
  background: rgba(232,78,15,0.1);
  border: 1.5px solid rgba(232,78,15,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.admin-no-broadcast {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

/* Admin Section */
.admin-section {
  margin-bottom: 3rem;
}

/* History */
.admin-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-history-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: background 0.2s;
}

.admin-history-item:hover {
  background: rgba(255,255,255,0.07);
}

.history-active {
  border-color: rgba(232,78,15,0.35);
  background: rgba(232,78,15,0.06);
}

.history-info { flex: 1; min-width: 0; }

.btn-delete {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-delete:hover {
  background: rgba(239,68,68,0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --text-hero: 3rem;
    --text-5xl:  2.25rem;
    --text-4xl:  1.875rem;
  }

  .section { padding-block: var(--space-8); }

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

  /* Admin */
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0.5rem;
  }

  .admin-sidebar-header { display: none; }

  .admin-nav {
    flex-direction: row;
    flex: none;
  }

  .admin-sidebar-footer { margin-top: 0; }

  .admin-main {
    padding: 1.5rem 1rem;
  }

  .schedule-event {
    grid-template-columns: 90px 1fr;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
  }

  .event-time-start { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  :root {
    --text-hero: 2.25rem;
    --text-5xl:  1.875rem;
  }

  .broadcast-inner { padding: 0.5rem 1rem; gap: 0.5rem; }
  .broadcast-message { font-size: 0.8rem; }

  .countdown-card { padding: var(--space-8) var(--space-4); }

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

  .tab-btn { padding: 0.65rem 1rem; font-size: 0.85rem; }

  .hero-badges { gap: 0.5rem; }

  .schedule-event {
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
  }
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
