/* ============================================================
   EXTREME CYBER‑OS THEME (Option C)
   Neon Hologram Panels • Particle Field • Animated Buttons
   ============================================================ */

/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #03040A;
  color: #E0F7FF;
  font-family: "Orbitron", sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* ---------- PARTICLE FIELD ---------- */
.particle {
  position: fixed;
  top: -10px;
  width: 4px;
  height: 4px;
  background: #00E5FF;
  border-radius: 50%;
  opacity: 0.8;
  animation: fall linear forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes fall {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(110vh); opacity: 0; }
}

/* ---------- PAGE WRAPPER ---------- */
.page-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  position: relative;
  z-index: 5;
}

/* ---------- HOLOGRAM PANEL ---------- */
.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 35px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(0,229,255,0.15), rgba(255,0,245,0.15));
  opacity: 0.15;
  pointer-events: none;
}

/* ---------- HEADERS ---------- */
h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 25px;
  color: #00E5FF;
  text-shadow: 0 0 12px #00E5FF;
}

h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #FF00F5;
  text-shadow: 0 0 10px #FF00F5;
}

/* ---------- DOWNLOAD BUTTONS ---------- */
.download-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  text-align: center;
  color: #E0F7FF;
  text-decoration: none;
  border: 1px solid #00E5FF;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.download-btn:hover {
  background: linear-gradient(90deg, #00E5FF33, #FF00F533);
  border-color: #FF00F5;
  transform: scale(1.03);
  box-shadow: 0 0 15px #00E5FF;
}

.download-btn:active {
  transform: scale(0.97);
}

/* ---------- RIPPLE EFFECT ---------- */
.download-btn .ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00E5FF;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0.7;
  animation: ripple 0.6s ease-out forwards;
}

@keyframes ripple {
  to {
    transform: scale(18);
    opacity: 0;
  }
}

/* ---------- GAME STATUS BADGE ---------- */
.game-status {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.game-status[data-status="uploaded"] {
  background: rgba(0, 255, 140, 0.15);
  border: 1px solid #00FF8C;
  color: #00FF8C;
  box-shadow: 0 0 12px #00FF8C;
}

.game-status[data-status="building"] {
  background: rgba(255, 200, 0, 0.15);
  border: 1px solid #FFC800;
  color: #FFC800;
  box-shadow: 0 0 12px #FFC800;
}

.game-status[data-status="missing"] {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid #FF0000;
  color: #FF0000;
  box-shadow: 0 0 12px #FF0000;
}

/* ---------- HOLOGRAM "COMING SOON" ---------- */
.hologram-placeholder {
  width: 100%;
  height: 260px;
  border: 1px dashed #00E5FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  font-size: 22px;
  text-shadow: 0 0 10px #00E5FF;
  opacity: 0.8;
  animation: hologramPulse 2.2s infinite ease-in-out;
}

@keyframes hologramPulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ---------- CHEAT TABLE ---------- */
.cheat-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.cheat-table th {
  background: rgba(0, 229, 255, 0.15);
  padding: 12px;
  border-bottom: 1px solid #00E5FF;
  color: #00E5FF;
  text-shadow: 0 0 8px #00E5FF;
}

.cheat-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.cheat-table tr:hover {
  background: rgba(255, 0, 245, 0.08);
}

/* ---------- BACK BUTTON ---------- */
.back-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 18px;
  border: 1px solid #FF00F5;
  border-radius: 8px;
  color: #FF00F5;
  text-decoration: none;
  transition: 0.25s ease;
}

.back-btn:hover {
  background: rgba(255, 0, 245, 0.15);
  box-shadow: 0 0 12px #FF00F5;
}
/* ============================================================
   ENHANCEMENTS: FILE DATE + INSTRUCTION TEXT
   ============================================================ */

/* ---------- FILE DATE (Updated:) ---------- */
.file-date {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #7CE8FF;
  opacity: 0.85;
  text-shadow: 0 0 6px #00E5FF;
  font-style: italic;
  padding-left: 4px;
  border-left: 2px solid rgba(0, 229, 255, 0.4);
  transition: 0.25s ease;
}

.file-date:hover {
  opacity: 1;
  text-shadow: 0 0 10px #00E5FF;
  border-left-color: #FF00F5;
}

/* ---------- INSTALL INSTRUCTIONS TEXT ---------- */
.panel ul {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  list-style: none;
  padding-left: 0;
}

.panel ul li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  color: #E0F7FF;
  opacity: 0.9;
  line-height: 1.45;
}

/* Neon bullet */
.panel ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #00E5FF;
  font-size: 12px;
  text-shadow: 0 0 6px #00E5FF;
}

/* Instruction paragraphs */
.panel p {
  margin-bottom: 12px;
  line-height: 1.55;
  opacity: 0.95;
  color: #E0F7FF;
}

/* Highlight strong text */
.panel p strong {
  color: #FF00F5;
  text-shadow: 0 0 8px #FF00F5;
}

/* Emphasis for platform notes */
.panel p em,
.panel ul li em {
  color: #7C4DFF;
  text-shadow: 0 0 6px #7C4DFF;
  font-style: normal;
  font-weight: 600;
}
