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

:root {
  --bg-color: #0d0d0d;
  --accent: #6c63ff;
  --accent-hover: #574fd6;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  background-image: url('../images/gerimental_team.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  padding: 3rem 0;
}

/* ── Dark overlay over the background image ──────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 30, 0.72) 0%,
    rgba(10, 8, 30, 0.60) 50%,
    rgba(10, 8, 30, 0.80) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Accent glow on top of overlay ───────────────────── */
body::after {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 2rem;
  text-align: center;
}

/* ── Logo ─────────────────────────────────────────────── */
.logo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.logo {
  width: 115px;
  height: 115px;
  object-fit: contain;
  opacity: 0.95;
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(108,99,255,0.3)); }
  50%       { filter: drop-shadow(0 0 18px rgba(108,99,255,0.75)); }
}

/* ── Entrance animations ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-header  { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.headline     { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.subtext      { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.countdown    { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
.notify-form  { animation: fadeUp 0.7s ease both; animation-delay: 0.7s; }
.form-message { animation: fadeUp 0.7s ease both; animation-delay: 0.8s; }
.socials      { animation: fadeUp 0.7s ease both; animation-delay: 0.9s; }

/* ── Band Name Label ──────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.35);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

/* ── Headline ─────────────────────────────────────────── */
.headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── Countdown ────────────────────────────────────────── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  min-width: 90px;
  backdrop-filter: blur(10px);
}

.countdown-item span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.countdown-item label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
/* Honeypot — invisible to real users */
#honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}
/* ── Notify Form ──────────────────────────────────────── */
.notify-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.notify-form input {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  backdrop-filter: blur(8px);
}

.notify-form input::placeholder {
  color: var(--text-secondary);
}

.notify-form input:focus {
  border-color: var(--accent);
}

.notify-form button {
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.notify-form button:hover {
  background: var(--accent-hover);
}

.notify-form button:active {
  transform: scale(0.97);
}

/* ── Form Message ─────────────────────────────────────── */
.form-message {
  font-size: 0.9rem;
  min-height: 1.4rem;
  color: #6ee7b7;
  margin-bottom: 2.5rem;
  transition: opacity 0.3s;
}

/* ── Socials ──────────────────────────────────────────── */
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}

.socials a img {
  width: 18px;
  height: 18px;
  filter: invert(1) brightness(0.65);
  transition: filter 0.2s;
}

.socials a:hover {
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.15);
}

.socials a:hover img {
  filter: invert(0.45) sepia(1) saturate(3) hue-rotate(220deg) brightness(1.1);
}

/* ── Latest Video ─────────────────────────────────────── */
.video-section {
  margin-top: 2.5rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 1.05s;
}

.video-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.video-thumb {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  cursor: pointer;
}

.video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease, brightness 0.3s ease;
  filter: brightness(0.85);
}

.video-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(0.65);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 68px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -60%) scale(1.12);
  opacity: 1;
}

.watch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1.5rem 1rem 0.85rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-thumb:hover .watch-label {
  opacity: 1;
}

/* ── Copyright ───────────────────────────────────────── */
.copyright {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.copyright a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.copyright a:hover {
  color: var(--accent);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 480px) {
  .countdown-item {
    min-width: 70px;
    padding: 1rem 1.25rem;
  }

  .countdown-item span {
    font-size: 2rem;
  }
}
