body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b14;
  color: white;
}

/* ===================== */
/* HEADER */
/* ===================== */

.header {
  text-align: center;
  padding: 40px 20px;
}

.header p {
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
}

/* ===================== */
/* HUD CONTROLS */
/* ===================== */

.hud-section {
  text-align: center;
  padding: 20px;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

button {
  background: #1c1c2e;
  color: white;
  border: 1px solid #333;
  padding: 10px 15px;
  cursor: pointer;
}

button:hover {
  background: #2a2a44;
}

/* ===================== */
/* 3 COLUMN MAIN LAYOUT */
/* ===================== */

.settings-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 20px;
}

/* ===================== */
/* LEFT INFO PANEL */
/* ===================== */

.info-box {
  flex: 0 0 280px;
  background: #141426;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #2a2a3a;
  text-align: left;
}

.info-box h3 {
  margin-top: 0;
}

.info-box p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* ===================== */
/* CENTER HUD */
/* ===================== */

.hud-display {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hud-display img {
  width: 100%;
  max-width: 900px;
  min-width: 600px;
  border: 2px solid #333;
  border-radius: 6px;
}

/* ===================== */
/* RIGHT CONTROLS */
/* ===================== */

.vss-panel {
  flex: 0 0 280px;
  background: #141426;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #2a2a3a;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.vss-panel h3 {
  margin-top: 0;
}

/* ===================== */
/* VSS ACTIVE STATE */
/* ===================== */

.vss-mode .vss-panel {
  opacity: 1;
  pointer-events: auto;
}

/* ===================== */
/* STATIC / NOISE */
/* ===================== */

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: url("noise.png");
  background-size: cover;
  opacity: var(--noise, 0);
  z-index: 9999;
  transition: opacity 0.2s ease;
}

/* ===================== */
/* FLOATERS */
/* ===================== */

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  opacity: var(--floaters, 0);

  z-index: 9998;
}
