@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');
/* === GLOBAL HEADER — shared across all pages === */
/* Self-contained: explicit line-heights so page body styles can't bleed in */

header {
  background: #1a7b6f;
  padding: 18px 32px;
  line-height: 1.2;
  font-family: "DM Sans", -apple-system, sans-serif;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Logo + date (left side) */
.logo-link {
  text-decoration: none !important;
  color: inherit;
}
.logo-link:hover { text-decoration: none !important; }
header h1 {
  font-family: 'Sora', 'DM Sans', -apple-system, sans-serif;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  line-height: 1.2;
  text-transform: lowercase;
}
.logo-text { display: inline; }
header h1 .t-green { color: #7DFCE0; }
header h1 .t-dot { color: rgba(255,255,255,0.5); }
.logo-icon { margin-right: 6px; }
.logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.logo-icon svg { width: 18px; height: 18px; }
.header-sub {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* Right side: timer + CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drop-timer {
  text-align: center;
  padding: 4px 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  line-height: 1.2;
}
.drop-label {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.2;
}
.drop-countdown {
  font-size: 16px;
  font-weight: 700;
  color: #a8f0e0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  line-height: 1.3;
}
.btn-sub {
  background: #fff;
  color: #1a7b6f;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.1s;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-sub:hover { transform: scale(1.03); }

/* Mobile */
@media (max-width: 768px) {
  header { padding: 14px 16px; }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  header h1 { font-size: 20px; }
  .header-sub { font-size: 11px; }
  .header-right { width: 100%; }
  .btn-sub {
    display: block;
    width: 100%;
    min-height: 44px;
    font-size: 14px;
    padding: 10px 18px;
    text-align: center;
  }
}
