/* ============================================
   MerPeople Directory — Styles
   Ocean-deep, cosmic, beautiful
   ============================================ */

:root {
  --deep: #020b18;
  --abyss: #050f1f;
  --midnight: #071428;
  --ocean: #0a2444;
  --teal-dark: #0d3b4f;
  --teal: #0e6b7c;
  --teal-light: #16a4b8;
  --aqua: #22d4e8;
  --aqua-glow: #5ee8f5;
  --foam: #a8f0f7;
  --white: #f0faff;
  --gold: #f7d76a;
  --gold-glow: #ffe066;
  --pearl: #e8f8ff;
  --text-dim: #6ba8bb;
  --text-mid: #9dd4e2;
  --text-light: #cceef6;
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--abyss);
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, #0a3060 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, #062035 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 60%, #041525 0%, transparent 50%),
    linear-gradient(180deg, #020b18 0%, #050f1f 40%, #020b18 100%);
  z-index: -2;
}

/* Bubbles */
.bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bubbles span {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(34, 212, 232, 0.15), rgba(34, 212, 232, 0.03));
  border: 1px solid rgba(34, 212, 232, 0.1);
  animation: rise linear infinite;
}

.bubbles span:nth-child(1)  { width: 8px;  height: 8px;  left: 5%;   animation-duration: 12s; animation-delay: 0s; }
.bubbles span:nth-child(2)  { width: 14px; height: 14px; left: 15%;  animation-duration: 18s; animation-delay: 2s; }
.bubbles span:nth-child(3)  { width: 6px;  height: 6px;  left: 25%;  animation-duration: 14s; animation-delay: 5s; }
.bubbles span:nth-child(4)  { width: 20px; height: 20px; left: 35%;  animation-duration: 22s; animation-delay: 1s; }
.bubbles span:nth-child(5)  { width: 10px; height: 10px; left: 45%;  animation-duration: 16s; animation-delay: 7s; }
.bubbles span:nth-child(6)  { width: 16px; height: 16px; left: 55%;  animation-duration: 20s; animation-delay: 3s; }
.bubbles span:nth-child(7)  { width: 7px;  height: 7px;  left: 65%;  animation-duration: 13s; animation-delay: 9s; }
.bubbles span:nth-child(8)  { width: 24px; height: 24px; left: 72%;  animation-duration: 25s; animation-delay: 4s; }
.bubbles span:nth-child(9)  { width: 12px; height: 12px; left: 80%;  animation-duration: 17s; animation-delay: 6s; }
.bubbles span:nth-child(10) { width: 9px;  height: 9px;  left: 88%;  animation-duration: 15s; animation-delay: 8s; }
.bubbles span:nth-child(11) { width: 18px; height: 18px; left: 93%;  animation-duration: 21s; animation-delay: 2s; }
.bubbles span:nth-child(12) { width: 5px;  height: 5px;  left: 98%;  animation-duration: 11s; animation-delay: 0s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(30px) scale(1.2); opacity: 0; }
}

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--aqua-glow);
  animation: drift linear infinite;
}

.particle:nth-child(1)  { top: 10%; left: 20%; animation-duration: 30s; animation-delay: 0s; }
.particle:nth-child(2)  { top: 25%; left: 75%; animation-duration: 38s; animation-delay: 5s; }
.particle:nth-child(3)  { top: 40%; left: 10%; animation-duration: 28s; animation-delay: 10s; }
.particle:nth-child(4)  { top: 55%; left: 85%; animation-duration: 35s; animation-delay: 3s; }
.particle:nth-child(5)  { top: 70%; left: 40%; animation-duration: 40s; animation-delay: 7s; }
.particle:nth-child(6)  { top: 15%; left: 55%; animation-duration: 32s; animation-delay: 15s; }
.particle:nth-child(7)  { top: 80%; left: 20%; animation-duration: 36s; animation-delay: 2s; }
.particle:nth-child(8)  { top: 35%; left: 90%; animation-duration: 29s; animation-delay: 12s; }
.particle:nth-child(9)  { top: 60%; left: 60%; animation-duration: 42s; animation-delay: 8s; }
.particle:nth-child(10) { top: 90%; left: 45%; animation-duration: 33s; animation-delay: 4s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(20px, -30px); opacity: 1; }
  50% { transform: translate(-15px, -60px); opacity: 0.6; }
  75% { transform: translate(25px, -40px); opacity: 0.9; }
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(180deg, rgba(2, 11, 24, 0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--aqua);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(34, 212, 232, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--aqua); }

.nav-cta {
  background: linear-gradient(135deg, rgba(14, 107, 124, 0.3), rgba(22, 164, 184, 0.2));
  border: 1px solid rgba(34, 212, 232, 0.3);
  border-radius: 100px;
  padding: 10px 24px !important;
  color: var(--aqua) !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(14, 107, 124, 0.5), rgba(22, 164, 184, 0.3)) !important;
  border-color: var(--aqua) !important;
  box-shadow: 0 0 20px rgba(34, 212, 232, 0.2);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--abyss) 0%, transparent 100%);
  z-index: 1;
}

/* Wave at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -5%;
  width: 110%;
  height: 120px;
  background: var(--abyss);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(247, 215, 106, 0.08);
  border: 1px solid rgba(247, 215, 106, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  text-shadow: 0 0 12px rgba(247, 215, 106, 0.4);
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  line-height: 1;
  margin-bottom: 16px;
}

.title-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #22d4e8 0%, #5ee8f5 30%, #a8f0f7 55%, #f7d76a 80%, #22d4e8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(34, 212, 232, 0.4));
  letter-spacing: -0.02em;
}

.title-sub {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 8px;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  line-height: 1.7;
  margin: 28px 0 20px;
  font-weight: 300;
}

.hero-tagline em {
  color: var(--aqua);
  font-style: italic;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--teal);
  font-size: 1.1rem;
  margin: 24px 0;
}

.divider-icon {
  font-size: 1.8rem;
  animation: float 4s ease-in-out infinite;
}

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

.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* Primary Button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0e6b7c, #16a4b8, #22d4e8);
  background-size: 200% 200%;
  color: var(--deep);
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 0 30px rgba(34, 212, 232, 0.35),
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: btnPulse 4s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 50px rgba(34, 212, 232, 0.5),
    0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background-position: 100% 0%;
}

.btn-icon { font-size: 1.2rem; animation: wave 2s ease-in-out infinite; }

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(34, 212, 232, 0.35), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 50px rgba(34, 212, 232, 0.55), 0 4px 20px rgba(0,0,0,0.4); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 2s 1s both;
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

section { position: relative; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
  opacity: 0.8;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 680px;
  margin-bottom: 20px;
}

/* ============================================
   ABOUT / CARDS
   ============================================ */

.about { text-align: center; }
.about .section-body { margin: 0 auto 20px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.card {
  background: linear-gradient(145deg,
    rgba(10, 36, 68, 0.6) 0%,
    rgba(13, 59, 79, 0.4) 100%);
  border: 1px solid rgba(34, 212, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 212, 232, 0.4), transparent);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 212, 232, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 212, 232, 0.08);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  animation: float 5s ease-in-out infinite;
}
.card:nth-child(2) .card-icon { animation-delay: 0.5s; }
.card:nth-child(3) .card-icon { animation-delay: 1s; }

.card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================
   THE RULE
   ============================================ */

.rule {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(7, 20, 40, 0.8) 30%,
    rgba(7, 20, 40, 0.8) 70%,
    transparent 100%);
  text-align: center;
}

.rule-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 212, 232, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.rule-inner { max-width: 760px; }

.rule-title {
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rule-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: linear-gradient(135deg,
    rgba(14, 107, 124, 0.15) 0%,
    rgba(10, 36, 68, 0.4) 100%);
  border: 1px solid rgba(34, 212, 232, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: left;
  margin: 48px 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(34, 212, 232, 0.06), inset 0 0 40px rgba(34, 212, 232, 0.02);
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aqua), var(--gold), var(--aqua), transparent);
}

.rule-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(34, 212, 232, 0.15);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -8px;
}

.rule-content h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.rule-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.rule-proof {
  background: rgba(34, 212, 232, 0.06);
  border: 1px solid rgba(34, 212, 232, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.proof-badge {
  display: inline-block;
  background: rgba(34, 212, 232, 0.12);
  border: 1px solid rgba(34, 212, 232, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--aqua);
  margin-bottom: 12px;
}

.rule-proof p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

.rule-footnote {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

/* ============================================
   GALLERY TEASE
   ============================================ */

.gallery-tease { text-align: center; }
.gallery-tease .section-body { margin: 0 auto 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
  margin-bottom: 32px;
}

.gallery-card {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Ocean-gradient placeholder art */
.gc-1 { background: linear-gradient(135deg, #0a2444 0%, #0d3b4f 40%, #0e6b7c 100%); }
.gc-2 { background: linear-gradient(135deg, #051a30 0%, #0a3060 50%, #16a4b8 100%); grid-row: span 2; }
.gc-3 { background: linear-gradient(135deg, #062035 0%, #0d3b4f 50%, #22d4e8 100%); }
.gc-4 { background: linear-gradient(225deg, #0a2444 0%, #0e3a5c 50%, #16a4b8 100%); grid-row: span 2; }
.gc-5 { background: linear-gradient(135deg, #020b18 0%, #0a2444 40%, #0d3b4f 100%); }
.gc-6 { background: linear-gradient(135deg, #051a30 0%, #0a3060 40%, #0e6b7c 100%); }

/* Ripple/shimmer effect on gallery cards */
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(34, 212, 232, 0.05) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: cardShimmer 6s ease-in-out infinite;
}

.gallery-card:nth-child(even)::before { animation-delay: 3s; }
.gallery-card:nth-child(3n)::before { animation-delay: 1.5s; }

@keyframes cardShimmer {
  0%, 100% { background-position: -100% -100%; }
  50% { background-position: 200% 200%; }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(2, 11, 24, 0.3);
  transition: background 0.3s;
}

.gallery-card:hover .gallery-overlay { background: rgba(2, 11, 24, 0.1); }

.gallery-overlay span { font-size: 2.5rem; animation: float 4s ease-in-out infinite; }
.gallery-card:nth-child(2) .gallery-overlay span { animation-delay: 0.7s; }
.gallery-card:nth-child(3) .gallery-overlay span { animation-delay: 1.4s; }
.gallery-card:nth-child(4) .gallery-overlay span { animation-delay: 2.1s; }
.gallery-card:nth-child(5) .gallery-overlay span { animation-delay: 0.35s; }
.gallery-card:nth-child(6) .gallery-overlay span { animation-delay: 1.75s; }

.gallery-overlay p {
  font-size: 0.8rem;
  color: rgba(168, 240, 247, 0.7);
  letter-spacing: 0.1em;
  font-weight: 300;
}

.gallery-note {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   REGISTER CTA
   ============================================ */

.register {
  text-align: center;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(14, 107, 124, 0.08) 30%,
    rgba(14, 107, 124, 0.08) 70%,
    transparent 100%);
}

.register-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(34, 212, 232, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.register-inner { max-width: 760px; }

.register-title {
  background: linear-gradient(135deg, var(--white), var(--aqua-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-body {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* Steps */
.register-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 107, 124, 0.4), rgba(34, 212, 232, 0.2));
  border: 1px solid rgba(34, 212, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--aqua);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(34, 212, 232, 0.1);
}

.step p {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  max-width: 80px;
  text-align: center;
  line-height: 1.4;
}

.step-arrow {
  color: var(--teal);
  font-size: 1.2rem;
  margin-bottom: 22px;
  opacity: 0.6;
}

/* Register button */
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(14, 107, 124, 0.3), rgba(10, 36, 68, 0.5));
  border: 1px solid rgba(34, 212, 232, 0.2);
  border-radius: 100px;
  padding: 20px 48px;
  color: var(--text-dim);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: not-allowed;
  position: relative;
  margin-bottom: 24px;
}

.btn-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.coming-soon-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(247, 215, 106, 0.15);
  border: 1px solid rgba(247, 215, 106, 0.3);
  color: var(--gold);
  border-radius: 100px;
  padding: 4px 12px;
}

.register-disclaimer {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* Email form */
.email-form {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input {
  background: rgba(10, 36, 68, 0.5);
  border: 1px solid rgba(34, 212, 232, 0.2);
  border-radius: 100px;
  padding: 14px 24px;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  width: 280px;
  outline: none;
  transition: all 0.3s;
}

.email-input::placeholder { color: var(--text-dim); opacity: 0.6; }
.email-input:focus {
  border-color: rgba(34, 212, 232, 0.4);
  box-shadow: 0 0 20px rgba(34, 212, 232, 0.08);
}

.btn-notify {
  background: linear-gradient(135deg, #0e6b7c, #16a4b8);
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  color: var(--deep);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(34, 212, 232, 0.2);
}

.btn-notify:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(34, 212, 232, 0.35);
}

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

.footer {
  border-top: 1px solid rgba(34, 212, 232, 0.08);
  background: linear-gradient(180deg, transparent, rgba(2, 11, 24, 0.8));
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 48px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: var(--aqua);
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(34, 212, 232, 0.3);
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 24px;
}

.footer-divider {
  color: rgba(34, 212, 232, 0.2);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(107, 168, 187, 0.5);
  letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links a:not(.nav-cta) { display: none; }

  .section-inner { padding: 72px 24px; }

  .hero { padding: 100px 24px 80px; }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rule-card {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
  }

  .rule-number { font-size: 2.5rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gc-2, .gc-4 { grid-row: span 1; }

  .register-steps { gap: 8px; }
  .step-arrow { display: none; }

  .email-form { flex-direction: column; }
  .email-input { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 160px);
  }

  .btn-primary { padding: 16px 28px; font-size: 0.9rem; }
}
