@import "variables.css";
@import "base.css";
@import "typography.css";
@import "navigation.css";
@import "hero.css";
@import "cards.css";
@import "components.css";
@import "cta.css";
@import "timeline.css";

.radio-shell {
  position: relative;
  background: rgba(10, 14, 26, 0.92);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: drift 7s infinite ease-in-out;
}

.radio-top,
.radio-box {
  position: relative;
  z-index: 2;
}

.radio-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 12px rgba(143, 181, 255, 0.35);
  animation: signal-pulse 3.5s infinite ease-in-out;
}

.radio-box {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-box .label {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.16em;
  color: var(--text-faded);
  text-transform: uppercase;
}

.radio-text {
  font-family: var(--font-mono);
  line-height: 1.8;
  color: var(--text-soft);
}

.radio-text.primary {
  font-size: var(--text-md);
  color: var(--text-main);
  opacity: 0.88;
  transform: skew(-0.3deg);
  animation: pulse 2.5s infinite;
}

.radio-text.secondary {
  font-size: var(--text-sm);
  color: var(--text-dim);
  opacity: 0.7;
}



/* =========================
   WORLD STATUS
========================= */

#world-status {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 60, 60, 0.75);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.35);
  animation: pulse 2.8s infinite ease-in-out;
}

/* =========================
   SLIDER SYSTEM
========================= */

.slider {
  display: flex;
  justify-content: center;
}

.slider-window {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  border-bottom: none;
  background: linear-gradient(to bottom, rgba(18, 22, 28, 0.72), rgba(10, 12, 14, 0.55));
  position: relative;
  box-shadow: inset 0 10px 25px rgba(0, 0, 0, 0.35);
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.status-card {
  flex: 0 0 100%;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.status-card h3 {
  margin: 4px 0 4px 0;
  font-size: var(--text-md);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-main);
}

.status-card p {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.88rem;
  max-width: 700px;
  opacity: 0.82;
}

.status-card span {
  color: var(--text-main);
}

.map-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(120, 150, 200, 0.18);
  background: rgba(8, 10, 18, 0.92);
}

.map-header {
  display: flex;
  flex-direction: column;
  gap:4px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.015);
}


.map-grid {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.map-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 2px,
      transparent 4px),
    linear-gradient(rgba(120, 160, 200, 0.10), rgba(8, 10, 14, 0.88)),
    url("https://i.ibb.co/4RfmhHxV/ezgif-2b6c038b95470d0f.gif");
  background-size:
    100% 100%,
    cover,
    cover;
  background-position: center;
  background-blend-mode:
    overlay,
    multiply,
    normal;
  filter:
    grayscale(1) contrast(1.25) brightness(0.7) sepia(0.2) hue-rotate(185deg);
  animation: subtleDrift 8s ease-in-out infinite;
}

.map-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg,
      transparent 35%,
      rgba(180, 220, 255, 0.04) 50%,
      transparent 65%);
  mix-blend-mode: screen;
  animation: signalSweep 6s linear infinite;
}

.map-telemetry,
.grid-text {
  position: absolute;
  z-index: 3;
}

.map-telemetry {
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.35);
}

.grid-text {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
  animation: pulse 6s ease-in-out infinite;
}

.grid-text p {
  color: var(--text-dim);
  opacity: 0.85;
}

.signal-interference {
  color: rgb(192, 66, 66) !important;
  text-shadow: 0 0 14px rgba(255, 60, 60, 0.35);
  animation: signalDrift 3.8s ease-in-out infinite;
}





/* =========================
   ARCHIVE SYSTEM
========================= */

.section-dossier {
  background: radial-gradient(circle at top,
      rgba(10, 18, 40, 0.92),
      #070a0f 70%);
}

.archive-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(to bottom,
      rgba(10, 14, 26, 0.96),
      rgba(6, 8, 14, 0.98));
  border: 1px solid color-mix(in srgb, var(--light-blue) 22%, transparent);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.75),
    inset 0 0 70px rgba(40, 80, 160, 0.06);
  padding: 40px;
  position: relative;
  letter-spacing: 0.2px;
}

.archive-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.archive-header {
  padding: 26px;
  border-left: 2px solid color-mix(in srgb, var(--light-blue) 35%, transparent);
  position: relative;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(170, 195, 230, 0.55);
}

.archive-title {
  font-size: var(--text-xl);
  margin-top: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235, 245, 255, 0.9);
}

.archive-subtitle {
  margin-top: 6px;
  font-size: var(--text-sm);
  color: rgba(190, 210, 240, 0.65);
}

.archive-fragments {
  margin-top: 12px;
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-faded);
  animation: pulse 4s infinite;
}

.stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 90, 90, 0.35);
  background: rgba(40, 10, 10, 0.25);
  color: rgba(255, 140, 140, 0.75);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  transform: rotate(-6deg);
  opacity: 0.85;
}

.archive-document h3 {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  line-height: 1.75;
}

.archive-document p {
  margin-bottom: 18px;
  color: rgba(200, 215, 240, 0.75);
  font-family: var(--font-mono);
  font-size: var(--text-md);
  line-height: 1.75;
}

.divider-line {
  height: 1px;
  margin: 18px 0 22px;
  background: linear-gradient(to right,
      transparent,
      color-mix(in srgb, var(--light-blue) 25%, transparent),
      transparent);
}

.archive-photo {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px dashed color-mix(in srgb, var(--light-blue) 20%, transparent);
  background: rgba(0, 0, 0, 0.22);
  max-width: 92%;
  gap: 12px;
  margin-bottom:12px;
}

.archive-photo img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.05) brightness(0.85);
}

.photo-meta {
  font-size: var(--text-xs);
  color: rgba(160, 185, 220, 0.5);
}

.end-file {
  text-align: center;

  font-size: var(--text-xs);
  letter-spacing: 6px;

  color: rgba(140, 160, 200, 0.4);
}



/* =========================
FIELD NOTES
========================= */

.section-notes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(120, 160, 255, 0.08), transparent 60%),
    linear-gradient(to bottom, #0a0d10, #0c1015);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
}

.note-wrap {
  position: relative;
}

.note-card {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
  background:
    linear-gradient(145deg,
      rgba(220, 235, 245, 0.06),
      rgba(18, 20, 24, 0.96));
  background-color: rgba(245, 238, 220, 0.03);
  border: 1px solid rgba(180, 185, 210, 0.14);
  box-shadow: var(--shadow-lg);
  transform: rotate(var(--tilt, -0.35deg));
  clip-path: polygon(2% 3%, 8% 0%, 20% 1%, 38% 0%, 55% 2%, 72% 0%, 90% 2%, 98% 6%,
      100% 18%, 98% 40%, 100% 62%, 97% 82%, 100% 96%,
      85% 100%, 65% 98%, 48% 100%, 30% 98%, 12% 100%, 2% 96%,
      0% 78%, 2% 58%, 0% 35%, 2% 18%);
}

.note-card:nth-child(2n) {
  --tilt: 0.35deg;
}

.note-card:nth-child(3n) {
  --tilt: -0.5deg;
}

.note-pin {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a9c7ff, #4f78b5, #1e2d44);
  box-shadow:
    inset 0 -3px 5px rgba(0, 0, 0, 0.75),
    0 8px 12px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.note-pin::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.25), transparent 70%);
  z-index: -1;
}

.note-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faded);
  margin-bottom: 10px;
}

.note-location {
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faded);
  font-size: var(--text-xs);
  margin-bottom: 12px;
}

.note-card h3 {
  font-size: var(--text-xl);
  color: #e6ecff;
  margin-bottom: 10px;
}

.note-text {
  font-size: var(--text-md);
  line-height: 1.9;
  color: rgba(230, 236, 255, 0.72);
  margin-bottom: 14px;
}

.note-traits {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180, 190, 200, 0.6);
  margin-bottom: 14px;
}

.note-memo {
  font-style: italic;
  font-size: 0.95rem;

  color: rgba(210, 200, 180, 0.75);
  border-left: 2px solid rgba(120, 160, 255, 0.35);
  padding-left: 10px;
}

.note-wrap:hover .note-card {
  transform: rotate(0deg) translate(-1px, -2px);
}

.note-wrap:hover .note-shadow {
  transform: rotate(0deg) translate(6px, 11px);
  box-shadow: 0 32px 50px rgba(0, 0, 0, 0.65);
}

.briefing-paper {
  background-color: var(--dark);
  border: 1px solid rgba(120, 160, 255, 0.18);
  padding: 34px;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 50px rgba(40, 80, 160, 0.04);
}

.briefing-item {
  padding: 10px 0;
}

.briefing-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;

  color: rgba(160, 180, 220, 0.55);
  margin-bottom: 6px;
}

/* TEXT STYLE */
.briefing-item h3 {
  font-size: 1rem;
  letter-spacing: 0.2em;

  color: rgba(230, 236, 255, 0.85);
  margin-bottom: 6px;
}

.briefing-item p {
  font-size: 0.95rem;
  line-height: 1.8;

  color: rgba(200, 215, 240, 0.72);
}

.briefing-divider {
  height: 1px;
  margin: 14px 0;

  background: linear-gradient(to right,
      transparent,
      rgba(120, 160, 255, 0.22),
      transparent);
}














.section-rules {
  background: radial-gradient(circle at top, rgba(10, 18, 40, 0.92), #070a0f 70%);
}

.rules-title {
  font-size: 2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235, 245, 255, 0.9);
}

.rules-subtitle {
  color: rgba(190, 210, 240, 0.6);
  font-size: 0.9rem;
}

.tab-system {
  display: flex;
  flex-direction: column;
}

.tab-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.tab-btn {
  background: rgba(245, 238, 220, 0.05);
  border: 1px solid rgba(120, 160, 255, 0.18);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: rgba(180, 200, 230, 0.6);
  cursor: pointer;
  text-transform: uppercase;
}

.tab-btn.active {
  background: rgba(245, 238, 220, 0.08);
  color: rgba(235, 245, 255, 0.9);
  border-bottom: 1px solid transparent;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.paper-panel {
  background: rgba(245, 238, 220, 0.06);
  border: 1px solid rgba(120, 160, 255, 0.18);

  padding: 28px;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 40px rgba(40, 80, 160, 0.04);
}

.paper-panel h3 {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(230, 236, 255, 0.85);
  margin-bottom: 12px;
}

.paper-panel p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(200, 215, 240, 0.72);
  margin-bottom: 12px;
}






/* =========================
   CRT / UI FLICKER
========================= */

@keyframes flicker {
  0% {
    opacity: 0.15;
  }

  20% {
    opacity: 0.22;
  }

  40% {
    opacity: 0.12;
  }

  60% {
    opacity: 0.18;
  }

  80% {
    opacity: 0.08;
  }

  100% {
    opacity: 0.20;
  }
}

/* =========================
   RADAR BEAM SWEEP
========================= */

@keyframes signalSweep {
  from {
    transform: translateX(-30%) rotate(12deg);
  }

  to {
    transform: translateX(30%) rotate(12deg);
  }
}

/* =========================
   SIGNAL INSTABILITY / INTERFERENCE
========================= */

@keyframes signalDrift {
  0% {
    opacity: 0.25;
    transform: translateX(0);
  }

  20% {
    opacity: 0.9;
  }

  40% {
    opacity: 0.35;
  }

  60% {
    opacity: 1;
  }

  80% {
    opacity: 0.5;
    transform: translateX(-0.4px);
  }

  100% {
    opacity: 0.85;
    transform: translateX(0.4px);
  }
}

/* =========================
   CRT GRAIN MOVEMENT
========================= */

@keyframes grain {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-1%, 1%);
  }

  50% {
    transform: translate(1%, -1%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* =========================
   MICRO HUD DRIFT
========================= */

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0.25px, -0.2px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* =========================
   RADAR PING / TARGET BLIP
========================= */

@keyframes signal-pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
}










/* =========================
   DICEMOD 
========================= */

.dice-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* MAIN SHELL */
.dice-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(120, 160, 255, 0.18);
  background: linear-gradient(to bottom,
      rgba(12, 16, 24, 0.92),
      rgba(8, 10, 14, 0.98));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.75),
    inset 0 0 60px rgba(60, 100, 160, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* =========================
   OUTPUT NUMBER
========================= */

.dice-number {
  font-family: "Courier New", monospace;
  font-size: var(--text-xl);
  letter-spacing: 0.25em;
  color: var(--text-faded);
  text-shadow:
    0 0 8px rgba(120, 160, 255, 0.25),
    0 0 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.dice-number.lock {
  transform: translateY(-2px);
  text-shadow:
    0 0 12px rgba(180, 210, 255, 0.4),
    0 0 35px rgba(0, 0, 0, 0.85);
}

.dice-status {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  opacity: 0.65;
  text-transform: uppercase;
}



.dice-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.dice-btn {
  padding: 10px 18px;
  background: rgba(10, 14, 20, 0.6);
  border: 1px solid rgba(140, 170, 210, 0.25);
  color: rgba(230, 240, 255, 0.8);
  font-family: "Courier New", monospace;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: 0.2s ease;
}

.dice-btn:hover {
  background: rgba(140, 170, 210, 0.08);
  border-color: rgba(200, 220, 255, 0.35);
  transform: translateY(-1px);
}


img.under-construction {
  width: 65%;
  height: auto;
}


.rules-section h3 {
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.rules-section p {
    margin-bottom: 15px;
}


.rules-section h3 {
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}


.your-video {
  display: block;
  margin: 0 auto;
}


.your-video {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;

  border: 6px solid #121520;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}


.your-video {
  display: block;
  margin: 50px auto 0 auto; /* top right bottom left */
}


.section-trailer {
  padding: 6rem 0;
}

.trailer-panel {
  background: #121520;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.your-video {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;

  border: 4px solid #121520;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}