/* ==========================================================================
   Prescott Film Festival 2026 — Sweet 16 Design System
   Color Palette: #2774ae → #002e5d gradient background (80% opacity)
   Text: #bdc3c7 → #2c3e50, #434343, #232526 → #414345
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Background gradient */
  --bg-start: #2774ae;
  --bg-mid: #002e5d;
  --bg-end: #002e5d;
  --bg-opacity: 0.80;

  /* Text colors */
  --text-heading: #2c3e50;
  --text-heading-light: #bdc3c7;
  --text-body: #434343;
  --text-secondary: #414345;
  --text-sub: #232526;

  /* Accent & UI */
  --accent-gold: #d4a843;
  --accent-gold-hover: #e6bc5a;
  --accent-maroon: #800000;
  --accent-cream: #f1e7da;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
  --footer-height: 60px;
  --nav-height: 48px;
  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-mid) 40%, var(--bg-end) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Background overlay for 80% opacity effect */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(39, 116, 174, var(--bg-opacity)) 0%,
    rgba(0, 46, 93, var(--bg-opacity)) 40%,
    rgba(0, 46, 93, var(--bg-opacity)) 100%
  );
  z-index: -1;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: var(--space-md);
}

ul, ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-xs);
}

/* ---------- Layout Containers ---------- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.main-content {
  flex: 1;
  padding: var(--space-xl) 0 0;
}

/* ---------- Header ---------- */
.site-header {
  background: rgb(241 241 241 / 80%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

.header-logos {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-logos img {
  height: 50px;
  width: auto;
}

.header-title {
  font-family: var(--font-heading);
  color: var(--text-body);
  font-size: 1.1rem;
  font-weight: 400;
  white-space: nowrap;
}

.header-title span {
  color: var(--accent-gold);
  font-weight: 700;
}

.header-social {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast);
}

.header-social a:hover {
  background: rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.header-social svg {
  width: 16px;
  height: 16px;
  fill: #535353;
}

/* ---------- Navigation ---------- */
.site-nav {
  background: rgba(0, 46, 93, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--accent-gold);
  position: sticky;
  top: var(--header-height);
  z-index: 999;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: var(--space-xs);
}

.nav-list li a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--text-heading-light);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

.nav-list li a:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.nav-list li a.active {
  color: var(--white);
  border-bottom-color: var(--accent-gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition-base);
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-start), var(--accent-gold), var(--bg-mid));
}

/* When glass-card sits directly above the scroller, merge them visually */
.glass-card + pff-sponsor-scroller .sponsor-scroller,
.home-layout + pff-sponsor-scroller .sponsor-scroller {
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  margin-top: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  clip-path: inset(0 -32px -32px -32px);
}

.container > .glass-card:has(+ pff-sponsor-scroller) {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  clip-path: inset(-32px -32px 0 -32px);
}

.glass-card-dark {
  background: rgba(0, 46, 93, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  color: var(--white);
}

.glass-card-dark h1,
.glass-card-dark h2,
.glass-card-dark h3,
.glass-card-dark h4 {
  color: var(--white);
}

/* ---------- Showcase Cards ---------- */
.showcase-card {
  background: var(--accent-cream);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.showcase-card img {
  border-radius: var(--border-radius);
  height: 150px;
  width: auto;
  flex-shrink: 0;
}

.showcase-card p {
  margin: 0;
  line-height: 1.7;
}

/* ---------- Sweet 16 Hero ---------- */
.sweet16-hero {
  position: relative;
  background: url('/images/artwork/forest_ridge.jpg') center/cover no-repeat;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.sweet16-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 46, 93, 0.82) 0%,
    rgba(39, 116, 174, 0.65) 50%,
    rgba(0, 46, 93, 0.80) 100%
  );
}

.sweet16-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.sweet16-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.sweet16-dates {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.sweet16-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-cream);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ---------- Countdown ---------- */
.countdown-widget {
  background: linear-gradient(135deg, var(--accent-maroon), #4a0000);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  color: var(--white);
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.countdown-widget h2 {
  color: var(--accent-cream);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 400;
}

.countdown-blocks {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  flex: 1;
}

.countdown-block .number {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--accent-gold);
  line-height: 1;
}

.countdown-block .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cream);
  margin-top: var(--space-xs);
}

.earlybird-text {
  font-size: 0.9rem;
  color: var(--accent-cream);
  margin-top: var(--space-md);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #c49832);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.45);
  color: #1a1a1a;
  text-decoration: none;
}

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

.btn-outline:hover {
  background: var(--accent-gold);
  color: #1a1a1a;
  text-decoration: none;
}

.btn-maroon {
  background: linear-gradient(135deg, var(--accent-maroon), #660000);
  color: var(--white);
}

.btn-maroon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.35);
  color: var(--white);
  text-decoration: none;
}

/* ---------- Tab Navigation ---------- */
.tab-nav {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 2px solid rgba(0, 46, 93, 0.15);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: var(--space-sm) var(--space-lg);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--bg-start);
  background: rgba(39, 116, 174, 0.05);
}

.tab-btn.active {
  color: var(--bg-mid);
  border-bottom-color: var(--accent-gold);
  font-weight: 600;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
  min-height: calc(100vh - var(--header-height) - var(--nav-height) - var(--footer-height) - 15px - 12rem);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Sponsor Grid ---------- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.sponsor-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid #e8e8e8;
  transition: all var(--transition-base);
  cursor: pointer;
}

.sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-gold);
}

.sponsor-item img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.sponsor-item .sponsor-name {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.95rem;
}

/* ---------- Lodging / Dining Cards ---------- */
.listing-card {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
  border-bottom: 1px solid #e0e0e0;
  transition: background var(--transition-fast);
}

.listing-card:hover {
  background: rgba(39, 116, 174, 0.03);
}

.listing-card:last-child {
  border-bottom: none;
}

.listing-card img {
  width: 240px;
  height: 120px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  background: var(--white);
  padding: var(--space-xs);
}

.listing-card .listing-info {
  flex: 1;
}

.listing-card .listing-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent-maroon);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.listing-card .listing-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}

.listing-card .listing-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Team Grid ---------- */
.team-member {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid #e0e0e0;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member img {
  width: 150px;
  height: auto;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  object-fit: cover;
}

.team-member .member-info {
  flex: 1;
}

.team-member .member-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.team-member .member-title {
  font-size: 0.85rem;
  color: var(--bg-start);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.team-member .member-bio {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  text-align: center;
  padding: var(--space-md) 0;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-powered {
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-top: var(--space-xs);
}

/* ---------- Sponsor Scroller / Marquee ---------- */
.sponsor-scroller {
  background: var(--card-bg);
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  padding: var(--space-md) 0;
  overflow: hidden;
  margin: 0 0 var(--space-xl);
  position: relative;
  box-shadow: var(--card-shadow);
}

.sponsor-scroller::before,
.sponsor-scroller::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.sponsor-scroller::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.sponsor-scroller::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.scroller-track {
  display: flex;
  gap: var(--space-xl);
  animation: scroll-marquee linear infinite;
  width: max-content;
}

.scroller-track a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.scroller-track img {
  height: 50px;
  width: 100px;
  object-fit: contain;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Poster Sidebar ---------- */
.sidebar-poster img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ---------- Connect / Donate Widget ---------- */
.connect-widget {
  background: linear-gradient(135deg, var(--accent-maroon), #4a0000);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  text-align: center;
  color: var(--white);
}

.connect-widget h3 {
  color: var(--accent-cream);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ---------- Home Layout ---------- */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  background: var(--card-bg);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  padding: var(--space-2xl);
  box-shadow: var(--card-shadow);
  position: relative;
}

.home-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-start), var(--accent-gold), var(--bg-mid));
}

.home-layout .glass-card {
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.home-layout .glass-card::before {
  display: none;
}

.home-main {
  min-width: 0;
}

.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height) + var(--nav-height) + var(--space-lg));
  align-self: start;
  z-index: 10;
}

/* ---------- Section Headings ---------- */
.section-heading {
  color: var(--bg-mid);
  font-family: var(--font-heading);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}

/* ---------- Ticket Section ---------- */
.ticket-tier {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid #e0e0e0;
}

.ticket-tier:last-child {
  border-bottom: none;
}

.ticket-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-maroon);
}

.ticket-earlybird {
  font-size: 0.9rem;
  color: var(--bg-start);
  font-weight: 600;
}

/* ---------- Contact Info ---------- */
.contact-info {
  font-size: 1.05rem;
  line-height: 2;
}

.contact-info strong {
  color: var(--text-heading);
}

/* ---------- 404 Page ---------- */
.page-404 {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.page-404 h1 {
  font-size: 6rem;
  color: var(--accent-gold);
  margin-bottom: 0;
}

.page-404 p {
  color: var(--white);
  font-size: 1.25rem;
}

/* ---------- Map Image ---------- */
.map-container img {
  width: 100%;
  max-width: 700px;
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .home-layout {
    grid-template-columns: 1fr;
  }

  .home-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-sidebar > * {
    flex: 1;
    min-width: 250px;
  }

  .header-title {
    display: none;
  }

  .showcase-card {
    flex-direction: column;
    text-align: center;
  }

  .showcase-card img {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  .sweet16-title { font-size: 2.75rem; }
  .sweet16-dates { font-size: 1.1rem; }
  .sweet16-tagline { font-size: 1rem; }

  .glass-card {
    padding: var(--space-lg);
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    background: rgba(0, 46, 93, 0.98);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: var(--space-md);
    border-bottom: 2px solid var(--accent-gold);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li a {
    padding: var(--space-md);
    text-align: center;
  }

  .listing-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .listing-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-member img {
    width: 120px;
  }

  .countdown-block .number {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .glass-card {
    padding: var(--space-md);
  }

  .home-layout {
    padding: var(--space-md);
  }

  .showcase-card {
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .header-logos img:not(:first-child) {
    display: none;
  }

  .countdown-blocks {
    gap: var(--space-sm);
  }

  .countdown-block {
    min-width: 55px;
  }

  .countdown-block .number {
    font-size: 1.5rem;
  }

  .sweet16-hero-inner {
    padding: var(--space-xl) var(--space-md);
  }

  .sweet16-title {
    font-size: 2.25rem;
  }
}
