/* ===== SITE 5: Aetheria - Retro Pixel RPG Style ===== */
@import url('https://fonts.googleapis.cn/css2?family=Press+Start+2P&display=swap');

:root {
  --bg-primary: #0F380F;
  --bg-secondary: #306230;
  --bg-card: #0F380F;
  --accent: #9BBC0F;
  --accent-dim: #8BAC0F;
  --accent-dark: #306230;
  --text-primary: #9BBC0F;
  --text-secondary: #8BAC0F;
  --text-muted: #306230;
  --border: #306230;
  --font-pixel: 'Press Start 2P', cursive;
  --font-fallback: monospace;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; image-rendering: pixelated; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-pixel), var(--font-fallback);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 12px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }
button { font-family: var(--font-pixel), var(--font-fallback); cursor: pointer; border: none; background: none; color: inherit; font-size: 10px; }
input { font-family: var(--font-pixel), var(--font-fallback); font-size: 10px; }
img { max-width: 100%; display: block; image-rendering: pixelated; }

/* ===== Pixel Grid Overlay ===== */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='none' stroke='%23306230' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.3;
}

/* ===== Loading Screen - Game Boy Boot ===== */
.app-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.app-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-gameboy {
  width: 320px; height: 280px; background: var(--bg-secondary);
  border: 8px solid #1a1a1a; border-radius: 8px 8px 30px 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px #333, 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
}
.loader-gameboy::before {
  content: 'NINTENDO'; position: absolute; bottom: -28px; left: 20px;
  font-size: 10px; color: #555; font-family: sans-serif; letter-spacing: 1px;
}
.loader-screen {
  width: 260px; height: 200px; background: var(--bg-primary);
  border: 4px solid #1a1a1a; display: flex; flex-direction: column;
  align-items: center; justify-content: center; position: relative;
}
.loader-screen::before {
  content: 'BATTERY'; position: absolute; top: 8px; right: 8px;
  font-size: 8px; color: var(--text-muted);
}
.loader-pixel-text {
  font-size: 16px; color: var(--accent); text-align: center;
  animation: blinkText 1s step-end infinite; margin-bottom: 16px;
}
@keyframes blinkText { 50% { opacity: 0; } }
.loader-pixel-bar {
  display: flex; gap: 4px; margin-top: 8px;
}
.loader-pixel-block {
  width: 16px; height: 16px; background: var(--text-muted);
  transition: background 0.3s;
}
.loader-pixel-block.active { background: var(--accent); box-shadow: 0 0 4px var(--accent); }
.loader-copyright {
  font-size: 8px; color: var(--text-muted); margin-top: 12px;
}

/* ===== Header - RPG Menu ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px; background: var(--bg-secondary);
  border-bottom: 4px solid var(--border);
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 800px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--accent); text-shadow: 2px 2px 0 var(--bg-primary);
}
.header-logo .logo-icon { font-size: 20px; }

/* ===== Urgency Banner ===== */
.urgency-banner {
  background: var(--accent);
  color: var(--bg-primary); text-align: center;
  padding: 8px 16px; font-size: 10px;
  letter-spacing: 1px;
  position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 36px;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 4px solid var(--border);
}
.urgency-banner svg { width: 12px; height: 12px; flex-shrink: 0; }
#bannerCountdown {
  display: inline-block;
  min-width: 80px;
  text-align: left;
  font-variant-numeric: tabular-nums;
}
.header-nav { display: flex; gap: 24px; }
.header-nav a { font-size: 10px; color: var(--text-secondary); transition: all 0.1s; padding: 4px 8px; }
.header-nav a:hover { background: var(--accent); color: var(--bg-primary); }
.btn-connect {
  background: var(--accent); color: var(--bg-primary); padding: 8px 16px;
  font-size: 10px; border: 4px solid var(--border);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  transition: all 0.1s;
}
.btn-connect:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(0,0,0,0.3); }
.btn-connect:active { transform: translate(4px, 4px); box-shadow: none; }

/* ===== Hero - RPG Title Screen ===== */
.hero { padding: 100px 0 40px; position: relative; z-index: 1; text-align: center; }
.hero::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(155,188,15,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; position: relative; }
.hero-eyebrow {
  display: inline-block; font-size: 10px; color: var(--text-muted);
  margin-bottom: 24px; padding: 8px 16px;
  border: 2px solid var(--border); background: var(--bg-secondary);
}
.hero-title {
  font-size: 32px; line-height: 1.4; margin-bottom: 24px;
  color: var(--accent); text-shadow: 4px 4px 0 var(--bg-primary), 0 0 20px rgba(155,188,15,0.3);
  letter-spacing: 2px;
}
.hero-title .line-accent { color: #fff; }
.hero-subtitle {
  font-size: 12px; color: var(--text-secondary); max-width: 480px;
  margin: 0 auto 32px; line-height: 1.8; padding: 16px;
  border: 2px solid var(--border); background: var(--bg-secondary);
  position: relative;
}
.hero-subtitle::after {
  content: '▼'; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  color: var(--accent); animation: bounceArrow 1s infinite;
}
@keyframes bounceArrow { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Hero Visual - Pixel RPG Character ===== */
.hero-visual {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.hero-pixel-art {
  width: 200px;
  background: var(--bg-secondary);
  border: 4px solid var(--border);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  padding: 24px;
  text-align: center;
  position: relative;
}
.hero-pixel-art::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; height: 4px;
  background: var(--accent);
}
.pixel-sword {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  animation: swordFloat 2s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0 var(--bg-primary));
}
@keyframes swordFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.pixel-hero-name {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 var(--bg-primary);
}
.pixel-hp-bar {
  width: 100%;
  height: 16px;
  background: var(--bg-primary);
  border: 2px solid var(--border);
  margin-bottom: 8px;
  position: relative;
}
.pixel-hp-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.3s;
  box-shadow: inset -2px -2px 0 rgba(0,0,0,0.2);
}
.pixel-hp-label {
  font-size: 8px;
  color: var(--text-secondary);
}

/* ===== Buttons - Pixel RPG ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 10px; padding: 12px 24px; transition: all 0.1s; white-space: nowrap;
  position: relative;
}
.btn-claim {
  background: var(--accent); color: var(--bg-primary);
  border: 4px solid var(--border); box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.btn-claim:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(0,0,0,0.3); }
.btn-claim:active { transform: translate(4px, 4px); box-shadow: none; }
.btn-secondary {
  background: var(--bg-secondary); color: var(--accent);
  border: 4px solid var(--border); box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.btn-secondary:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(0,0,0,0.3); }

/* ===== Stats Bar - RPG HUD ===== */
.stats-bar { padding: 24px 0; position: relative; z-index: 1; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 800px; margin: 0 auto; padding: 0 24px;
}
.stat-item {
  text-align: center; padding: 16px;
  border: 4px solid var(--border); background: var(--bg-secondary);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.stat-value { font-size: 20px; color: var(--accent); margin-bottom: 8px; text-shadow: 2px 2px 0 var(--bg-primary); }
.stat-label { font-size: 8px; color: var(--text-muted); }

/* ===== Benefits - RPG Skills ===== */
.benefits { padding: 60px 0; position: relative; z-index: 1; }
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-eyebrow { display: inline-block; font-size: 10px; color: var(--text-muted); margin-bottom: 12px; }
.section-title { font-size: 20px; color: var(--accent); text-shadow: 3px 3px 0 var(--bg-primary); margin-bottom: 8px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  border: 4px solid var(--border); background: var(--bg-secondary);
  padding: 24px; box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  transition: all 0.1s; position: relative;
}
.benefit-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.3); }
.benefit-card::before {
  content: ''; position: absolute; top: -4px; left: -4px; right: -4px; height: 4px;
  background: var(--accent);
}
.benefit-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 24px; border: 2px solid var(--border); background: var(--bg-primary);
}
.benefit-title { font-size: 12px; margin-bottom: 8px; color: #fff; }
.benefit-desc { font-size: 10px; color: var(--text-secondary); line-height: 1.6; }

/* ===== NFT Cards - RPG Inventory ===== */
.projects-section { padding: 60px 0; position: relative; z-index: 1; }
.nfts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nft-card {
  border: 4px solid var(--border); background: var(--bg-secondary);
  padding: 16px; box-shadow: 4px 4px 0 rgba(0,0,0,0.3); text-align: center;
  transition: all 0.1s; position: relative;
}
.nft-card:hover { border-color: var(--accent); box-shadow: 4px 4px 0 rgba(0,0,0,0.3), 0 0 20px rgba(155,188,15,0.2); }
.nft-rarity { display: inline-block; font-size: 8px; padding: 4px 8px; margin-bottom: 12px; border: 2px solid var(--border); background: var(--bg-primary); }
.nft-rarity.legendary { color: #FFD700; border-color: #FFD700; }
.nft-rarity.epic { color: #C77DFF; border-color: #C77DFF; }
.nft-rarity.rare { color: var(--accent); border-color: var(--accent); }
.nft-image {
  width: 100%; aspect-ratio: 1; background: var(--bg-primary);
  border: 4px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; image-rendering: pixelated;
}
.nft-emoji { font-size: 48px; }
.nft-name { font-size: 10px; margin-bottom: 12px; color: #fff; }
.nft-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 12px; }
.nft-stat { display: flex; justify-content: space-between; font-size: 8px; padding: 4px 6px; background: var(--bg-primary); border: 2px solid var(--border); }
.nft-stat span:first-child { color: var(--text-muted); }
.nft-stat span:last-child { color: var(--accent); }
.nft-price { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; padding: 0 4px; }
.price-label { font-size: 8px; color: var(--text-muted); }
.price-value { font-size: 12px; color: var(--accent); }
.nft-supply { font-size: 8px; color: var(--text-muted); margin-bottom: 12px; }
.supply-soldout { color: #FF4444; }
.supply-bar { width: 100%; height: 8px; background: var(--bg-primary); border: 2px solid var(--border); margin-top: 4px; }
.supply-fill { height: 100%; background: var(--accent); }

/* Earn Cards - RPG Quests */
.earn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.earn-card {
  border: 4px solid var(--border); background: var(--bg-secondary);
  padding: 20px; text-align: center; box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.earn-card:hover { border-color: var(--accent); }
.earn-icon { font-size: 32px; margin-bottom: 12px; }
.earn-title { font-size: 10px; margin-bottom: 8px; color: #fff; }
.earn-desc { font-size: 8px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.6; }
.earn-rate { font-size: 10px; color: var(--accent); }

/* Tiers Section */
.tiers-section { padding: 60px 0; position: relative; z-index: 1; }

/* ===== Mint Section - RPG Shop ===== */
.claim-section { padding: 60px 0; position: relative; z-index: 1; }
.claim-card {
  max-width: 480px; margin: 0 auto;
  border: 4px solid var(--border); background: var(--bg-secondary);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3); position: relative;
}
.claim-card::before {
  content: 'SHOP'; display: block; background: var(--accent); color: var(--bg-primary);
  padding: 8px 16px; font-size: 10px; text-align: center;
}
.claim-card-header { text-align: center; padding: 20px 20px 0; }
.claim-card-title { font-size: 14px; margin-bottom: 8px; color: #fff; }
.claim-card-subtitle { font-size: 10px; color: var(--text-secondary); }
.claim-divider { display: flex; align-items: center; gap: 12px; margin: 16px 20px; font-size: 10px; color: var(--text-muted); }
.claim-divider::before, .claim-divider::after { content: ''; flex: 1; height: 4px; background: var(--border); }
.wallet-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 20px; }
.wallet-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: var(--bg-primary); border: 4px solid var(--border);
  font-size: 10px; color: var(--text-primary); transition: all 0.1s;
}
.wallet-btn:hover { border-color: var(--accent); background: var(--bg-secondary); }
.wallet-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.wallet-name { flex: 1; text-align: left; }
.input-group { margin-bottom: 12px; padding: 0 20px; }
.input-group label { display: block; font-size: 10px; color: var(--accent); margin-bottom: 4px; }
.input-group input {
  width: 100%; padding: 10px 12px; background: var(--bg-primary);
  border: 4px solid var(--border); color: var(--accent); font-size: 10px; outline: none;
}
.input-group input:focus { border-color: var(--accent); }
.input-group input::placeholder { color: var(--text-muted); }
.claim-status { text-align: center; padding: 24px; }
.claim-status-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); margin: 0 auto 12px; border: 4px solid var(--accent); background: var(--bg-primary); }
.claim-status-title { font-size: 12px; margin-bottom: 6px; color: #fff; }
.claim-status-desc { font-size: 10px; color: var(--text-secondary); margin-bottom: 12px; }
.claim-txhash { font-size: 8px; color: var(--accent); background: var(--bg-primary); padding: 8px; border: 2px solid var(--border); word-break: break-all; }
.claim-reward-info { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: var(--bg-primary); border: 4px solid var(--border); margin: 0 20px; }
.claim-reward-label { font-size: 10px; color: var(--text-muted); }
.claim-reward-value { font-size: 12px; color: var(--accent); }
.countdown-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 0 20px 16px; }
.countdown-item { background: var(--bg-primary); border: 4px solid var(--border); padding: 12px; text-align: center; }
.countdown-value { font-size: 16px; color: var(--accent); text-shadow: 2px 2px 0 var(--bg-primary); }
.countdown-label { font-size: 8px; color: var(--text-muted); margin-top: 4px; }

/* ===== Timeline - RPG Quest Log ===== */
.timeline-section { padding: 60px 0; position: relative; z-index: 1; }
.timeline { max-width: 600px; margin: 0 auto; padding: 0 24px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 4px; background: var(--border); }
.timeline-item { display: flex; gap: 20px; padding: 20px 0; position: relative; }
.timeline-dot {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; border: 4px solid var(--border); background: var(--bg-primary);
  font-size: 16px;
}
.timeline-item.completed .timeline-dot { border-color: var(--accent); background: var(--accent); color: var(--bg-primary); }
.timeline-item.active .timeline-dot { border-color: var(--accent); background: var(--bg-primary); color: var(--accent); animation: pulsePixel 1s infinite; }
@keyframes pulsePixel { 0%,100% { box-shadow: 0 0 0 0 rgba(155,188,15,0.4); } 50% { box-shadow: 0 0 0 8px rgba(155,188,15,0); } }
.timeline-content { flex: 1; padding-top: 4px; }
.timeline-title { font-size: 12px; margin-bottom: 4px; color: #fff; }
.timeline-desc { font-size: 10px; color: var(--text-secondary); margin-bottom: 6px; }
.timeline-date { font-size: 10px; color: var(--accent); }

/* ===== FAQ - RPG Dialog ===== */
.faq-section { padding: 60px 0; position: relative; z-index: 1; }
.faq-list { max-width: 600px; margin: 0 auto; padding: 0 24px; }
.faq-item { border: 4px solid var(--border); margin-bottom: 12px; background: var(--bg-secondary); box-shadow: 4px 4px 0 rgba(0,0,0,0.3); }
.faq-item.open { border-color: var(--accent); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 10px; text-align: left; background: var(--bg-secondary); transition: all 0.1s; color: var(--text-primary); }
.faq-question:hover { background: var(--bg-primary); }
.faq-question svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--bg-primary); }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 20px 16px; font-size: 10px; color: var(--text-secondary); line-height: 1.6; }

/* ===== Footer - RPG Credits ===== */
.footer { padding: 40px 0 20px; border-top: 4px solid var(--border); position: relative; z-index: 1; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 12px; color: var(--accent); }
.footer-desc { font-size: 10px; color: var(--text-secondary); line-height: 1.6; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col-title { font-size: 10px; color: #fff; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 10px; color: var(--text-secondary); margin-bottom: 8px; transition: all 0.1s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 4px solid var(--border); font-size: 8px; color: var(--text-muted); }

/* ===== Telegram Overlay ===== */
#tg-safari-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(15,56,15,0.95); display: flex; align-items: center; justify-content: center; padding: 24px; }
.tg-safari-box { background: var(--bg-secondary); border: 4px solid var(--border); padding: 24px; max-width: 360px; text-align: center; box-shadow: 4px 4px 0 rgba(0,0,0,0.3); }
.tg-safari-title { font-size: 12px; margin-bottom: 10px; color: #fff; }
.tg-safari-desc { font-size: 10px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.tg-safari-btn { background: var(--accent); color: var(--bg-primary); padding: 10px 20px; font-size: 10px; border: 4px solid var(--border); box-shadow: 4px 4px 0 rgba(0,0,0,0.3); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .nfts-grid { grid-template-columns: repeat(2, 1fr); }
  .earn-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { padding: 90px 0 40px; }
  .hero-title { font-size: 18px; }
  .section-title { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nfts-grid { grid-template-columns: 1fr; }
  .earn-grid { grid-template-columns: 1fr; }
  .claim-card { margin: 0 16px; }
  .wallet-options { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .urgency-banner { font-size: 8px; padding: 4px 8px; height: 28px; gap: 4px; }
  .urgency-banner svg { width: 10px; height: 10px; }
}

@media (max-width: 480px) {
  body { font-size: 10px; }
  .hero-title { font-size: 16px; }
  .btn { padding: 10px 16px; font-size: 8px; }
  .countdown-wrap { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .countdown-item { padding: 8px; }
  .countdown-value { font-size: 14px; }
  .footer-links { grid-template-columns: 1fr; }
  .urgency-banner { font-size: 7px; padding: 2px 4px; height: 24px; gap: 2px; }
  .urgency-banner svg { width: 8px; height: 8px; }
  #bannerCountdown { min-width: 60px; }
}
