/* =====================================================
   Fish n Chips — Coming Soon
   Podcrash Games
   ===================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:   #1a2744;
  --navy-d: #0f1a30;
  --cream:  #f5f0e8;
  --gold:   #f4b942;
  --gold-d: #d4982a;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--navy-d);
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   COMING SOON MAIN
   ===================================================== */

.coming-soon-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #1e3a6e 0%, #0f1a30 70%);
}

/* Subtle noise texture */
.coming-soon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.cs-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Fish */
.hero-fish-wrap {
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 24px rgba(244,185,66,0.35));
  animation: fishBob 3.5s ease-in-out infinite;
}

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

/* Eyebrow */
.cs-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  background: rgba(244,185,66,0.1);
  border: 1px solid rgba(244,185,66,0.25);
  padding: 0.35em 1em;
  border-radius: 2em;
}

/* Title */
.cs-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.95;
  color: var(--cream);
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

/* Tagline */
.cs-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.02em;
  max-width: 34ch;
}

/* Steam button */
.btn-steam {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: #1b2838;
  color: #c7d5e0;
  border: 1px solid rgba(199,213,224,0.2);
  padding: 0.85em 1.8em;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.btn-steam:hover,
.btn-steam:focus-visible {
  background: #2a475e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.btn-steam:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =====================================================
   WAVES
   ===================================================== */

.cs-sea {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-1 { animation: waveDrift 8s ease-in-out infinite alternate; }
.wave-2 { animation: waveDrift 11s ease-in-out infinite alternate-reverse; }
.wave-3 { animation: waveDrift 6s ease-in-out infinite alternate; }

@keyframes waveDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-30px); }
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
  background: var(--navy-d);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

footer p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

footer nav {
  display: flex;
  gap: 1.25rem;
}

footer nav a {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

footer nav a:hover {
  color: rgba(245,240,232,0.8);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 480px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
