@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Oswald:wght@300;400;600&display=swap');

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

html, body {
  background: #080000;
  color: #f0a0a0;
  font-family: 'Share Tech Mono', monospace;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── CRT Effects ── */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.14) 3px,
    rgba(0,0,0,0.14) 4px
  );
  pointer-events: none;
  z-index: 100;
}

.crt-flicker {
  position: fixed;
  inset: 0;
  background: rgba(180,0,0,0.015);
  pointer-events: none;
  z-index: 99;
  animation: flicker 8s infinite;
}

@keyframes flicker {
  0%,96%,100% { opacity: 1; }
  97% { opacity: 0.85; }
  98% { opacity: 1; }
  99% { opacity: 0.9; }
}

.glitch-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0;
}

.glitch-overlay.active {
  animation: glitch-run 0.6s forwards;
}

@keyframes glitch-run {
  0%   { opacity: 1; background: rgba(139,0,0,0.08); clip-path: inset(30% 0 50% 0); transform: translateX(-4px); }
  15%  { clip-path: inset(10% 0 80% 0); transform: translateX(4px); }
  30%  { clip-path: inset(60% 0 20% 0); transform: translateX(-2px); background: rgba(180,0,0,0.12); }
  45%  { clip-path: inset(80% 0 5% 0); transform: translateX(3px); }
  60%  { clip-path: inset(5% 0 70% 0); transform: translateX(-3px); }
  75%  { clip-path: inset(45% 0 40% 0); transform: translateX(2px); }
  90%  { clip-path: inset(20% 0 65% 0); transform: translateX(-1px); }
  100% { opacity: 0; transform: translateX(0); }
}

/* ── Nav ── */
.gw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid #3d0000;
  position: relative;
  z-index: 50;
}

.gw-logo-area {
  cursor: pointer;
}

.gw-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: all 0.1s;
}

.gw-logo.flicker {
  animation: logo-flicker 0.5s forwards;
}

@keyframes logo-flicker {
  0%   { opacity: 1; filter: brightness(1); }
  10%  { opacity: 0.3; filter: brightness(2.5) saturate(3); transform: translateX(2px); }
  20%  { opacity: 1; filter: brightness(1); transform: translateX(0); }
  35%  { opacity: 0.5; filter: brightness(2) saturate(4); transform: translateX(-2px); }
  50%  { opacity: 1; filter: brightness(1); transform: translateX(0); }
  65%  { opacity: 0.2; filter: brightness(3) saturate(5); transform: translateX(1px); }
  80%  { opacity: 1; filter: brightness(1); transform: translateX(0); }
  90%  { opacity: 0.7; filter: brightness(1.5); }
  100% { opacity: 1; filter: brightness(1); }
}

.gw-nav-links {
  display: flex;
  gap: 8px;
}

.gw-nav-links a {
  color: #cc4444;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-family: 'Share Tech Mono', monospace;
}

.gw-nav-links a:hover {
  border-color: #6b0000;
  color: #ee6666;
}

.gw-nav-links a.active {
  border-color: #aa2222;
  color: #ff7777;
  background: rgba(139,0,0,0.18);
}

/* ── Hero ── */
.gw-hero {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 50px;
  text-align: center;
}

.gw-hero-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

.gw-eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  color: #883333;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gw-title {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #ff6666;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 2px 0 #8b0000, -1px 0 #3d0000;
}

.gw-subtitle {
  font-size: 10px;
  letter-spacing: 5px;
  color: #884444;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.gw-tagline {
  font-size: 14px;
  color: #cc7777;
  max-width: 480px;
  line-height: 2;
  border-left: 2px solid #6b0000;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 44px;
}

/* ── Button ── */
.gw-btn {
  display: inline-block;
  border: 1px solid #aa2222;
  color: #ff8888;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 13px 36px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  text-decoration: none;
  border-radius: 30px;
}

.gw-btn:hover {
  background: #8b0000;
  color: #ffdddd;
  border-color: #8b0000;
}

/* ── Static bar ── */
.gw-static-bar {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #8b0000 0px, #8b0000 2px,
    transparent 2px, transparent 6px,
    #3d0000 6px, #3d0000 8px,
    transparent 8px, transparent 14px
  );
  opacity: 0.6;
  position: relative;
  z-index: 20;
}

/* ── Cards (homepage) ── */
.gw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 40px;
  position: relative;
  z-index: 20;
}

.gw-card {
  background: #120000;
  padding: 28px 24px;
  border: 1px solid #3d0000;
  border-radius: 10px;
  transition: border-color 0.2s;
}

.gw-card:hover {
  border-color: #8b0000;
}

.gw-card-num {
  font-size: 10px;
  color: #663333;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.gw-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #ff6666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gw-card-body {
  font-size: 12px;
  color: #cc8080;
  line-height: 1.9;
}

/* ── Footer ── */
.gw-footer {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  border-top: 1px solid #2a0000;
}

.gw-signal {
  font-size: 9px;
  letter-spacing: 3px;
  color: #663333;
}

.signal-text {
  font-size: 9px;
  color: #663333;
  letter-spacing: 2px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Booking page ── */
.gw-booking-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 40px;
  position: relative;
  z-index: 20;
}

.gw-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gw-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gw-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bb5555;
}

.gw-input {
  background: #120000;
  border: 1px solid #3d0000;
  border-radius: 10px;
  color: #f0a0a0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.gw-input::placeholder {
  color: #552222;
}

.gw-input:focus {
  border-color: #aa2222;
}

.gw-select {
  appearance: none;
  cursor: pointer;
}

.gw-select option {
  background: #120000;
  color: #f0a0a0;
}

.gw-textarea {
  resize: vertical;
  min-height: 140px;
}

.gw-success {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid #6b0000;
  border-radius: 12px;
  background: #120000;
}

/* ── YouTube page ── */
.gw-youtube-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  z-index: 20;
}

.gw-yt-description {
  font-size: 14px;
  color: #cc8080;
  line-height: 2;
  max-width: 560px;
  margin: 0 auto 32px;
}

.gw-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.gw-video-card {
  background: #120000;
  border: 1px solid #3d0000;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.gw-video-card:hover {
  border-color: #8b0000;
}

.gw-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0000;
  border-bottom: 1px solid #2a0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gw-video-placeholder span {
  font-size: 10px;
  color: #552222;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px;
}

.gw-video-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #ff6666;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 16px 4px;
}

.gw-video-meta {
  font-size: 10px;
  color: #884444;
  letter-spacing: 1px;
  padding: 0 16px 14px;
}

.gw-yt-note {
  font-size: 10px;
  color: #663333;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .gw-nav { padding: 14px 20px; }
  .gw-logo { height: 38px; }
  .gw-nav-links a { padding: 6px 12px; font-size: 10px; }
  .gw-hero { padding: 40px 20px 32px; }
  .gw-hero-logo { max-width: 300px; }
  .gw-title { font-size: 36px; }
  .gw-cards { grid-template-columns: 1fr; padding: 20px; }
  .gw-video-grid { grid-template-columns: 1fr; }
  .gw-booking-section, .gw-youtube-section { padding: 32px 20px; }
  .gw-footer { padding: 16px 20px; }
}
