body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Consolas', 'Courier New', monospace;
  height: 100%;
  background-color: #000;
  background-image: url('../../assets/img/profile.jpg');
  background-size: cover;
  overflow-x: hidden;
}

/* --- Global Styles for skyn0t logs --- */

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: transparent;
  /* fully transparent overlay */
  opacity: 1;
  z-index: 1200;
  pointer-events: none;
}

.site-title {
  font-weight: 700;
  color: #3B2E38ff;
  background: transparent;
  letter-spacing: 0.08em;
  text-align: left;
  font-family: 'Consolas', 'Courier New', monospace;
  grid-column: 1;
}

.logo {
  width: 120px;
  height: 120px;
  margin: 0 1.2em 1.2em 0;
  display: block;
  background: url('../../assets/img/logo.png') center/60% no-repeat, linear-gradient(135deg, #35F9F7 10%, #BA60C4 90%);
  border-radius: 50%;
  border: 4px solid #35F9F7;
  box-shadow: 0 8px 24px 0 #35F9F7cc, 0 0 64px 0 #BA60C4cc;
  filter: brightness(1.18) contrast(1.25) saturate(1.35);
  transition: transform 0.15s, box-shadow 0.15s;
  outline: none;
  grid-column: 2;
}

.logo:active,
.logo:focus {
  transform: scale(0.95) translateY(2px);
  box-shadow: 0 2px 8px 0 #35F9F7aa, 0 0 32px 0 #BA60C4aa;
}

.logo:hover {
  filter: brightness(1.25) contrast(1.3) saturate(1.45);
  box-shadow: 0 12px 32px 0 #35F9F7ee, 0 0 80px 0 #BA60C4ee;
}

.nav-panel {
  position: fixed;
  top: 56px;
  left: 0;
  width: 260px;
  display: grid;
  grid-template-rows: auto 1fr;
  z-index: 1300;
  pointer-events: auto;
  padding-top: 1.5em;
}

.nav-panel .logo {
  margin: 0 0 2.5em 1.2em;
  display: block;
}

.nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 2.5em 0 0 32px;
  display: grid;
  gap: 18px;
  align-items: flex-start;
}

.nav-panel ul li:first-child {
  display: list-item;
}

.nav-panel a {
  color: #35F9F7;
  font-weight: bold;
  border-radius: 18px;
  padding: 10px 28px 10px 18px;
  margin: 0;
  background: rgba(59, 46, 56, 0.85);
  box-shadow: 0 0 12px 2px #35F9F755, 0 0 24px 4px #BA60C455;
  text-shadow: 0 0 12px #35F9F7, 0 0 24px #BA60C4;
  border: none;
  min-width: 160px;
  text-align: left;
  transition: background 0.2s, color 0.2s, text-shadow 0.2s;
  display: block;
  opacity: 0.9;
  /* 90% opacity for nav items */
}

.nav-panel a:hover {
  color: #BA60C4;
  background: rgba(53, 249, 247, 0.18);
  text-shadow: 0 0 16px #BA60C4, 0 0 24px #35F9F7;
}

.content {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 260px;
  background: linear-gradient(135deg, rgba(34, 20, 40, 0.98) 0%, rgba(59, 46, 56, 0.96) 60%, rgba(145, 56, 110, 0.85) 100%);
  color: #CFDDDE;
  border: 2px solid #35F9F7;
  box-shadow: 0 0 60px 0 #BA60C444, 0 0 120px 0 #35F9F744;
  padding: 2em;
  border-radius: 16px;
  text-align: left;
  font-size: 0.98em;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.1em !important;
}

.content p,
.content a,
.content strong {
  color: #CFDDDE;
  text-shadow: 0 0 8px #35F9F7, 0 0 12px #BA60C4;
}

.content a {
  color: #35F9F7;
  text-shadow: 0 0 12px #35F9F7, 0 0 24px #BA60C4;
}

.content a:hover {
  color: #BA60C4;
  text-shadow: 0 0 16px #BA60C4, 0 0 24px #35F9F7;
}

.content-hero {
  width: 100%;
  max-width: 640px;
  height: auto;
  display: block;
  margin: 0 auto 48px auto;
  box-shadow: 0 0 32px 0 #35F9F788, 0 0 64px 0 #BA60C488;
  border-radius: 18px;
  filter: brightness(0.95) contrast(1.08) saturate(1.15);
}

/* --- Vaporwave/retro display survey styles --- */
.vaporwave-form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 1em;
  font-size: 0.85em;
  padding: 0;
  align-items: stretch;
}

.vaporwave-fieldset {
  border: 2.5px solid #35F9F7;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(34, 20, 40, 0.28) 0%, rgba(59, 46, 56, 0.13) 60%, rgba(186, 96, 196, 0.04) 100%);
  box-shadow: 0 0 24px 0 #35F9F799, 0 0 48px 0 #BA60C488, 0 0 0 2px #1a1a2a inset;
  padding: 1.2em 1.5em 1.2em 1.5em;
  margin-bottom: 1.1em;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  box-sizing: border-box;
}

.vaporwave-legend {
  color: #c2b6d9;
  font-size: 0.92em;
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  text-shadow: 0 0 20px #35F9F7, 0 0 36px #BA60C4;
  background: linear-gradient(90deg, rgba(10, 6, 18, 0.98) 0%, rgba(34, 20, 40, 0.97) 100%);
  border-radius: 10px;
  padding: 0.55em 1.2em;
  margin-bottom: 0.7em;
  border-left: 5px solid #BA60C4;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}

.vaporwave-options {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 0.85em;
  width: 100%;
  box-sizing: border-box;
}

.vaporwave-options label {
  color: #aafcff;
  font-size: 0.85em;
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  background: linear-gradient(90deg, rgba(53, 249, 247, 0.10) 0%, rgba(186, 96, 196, 0.08) 100%);
  border-radius: 8px;
  padding: 0.18em 0.7em 0.18em 0.7em;
  border: 1.5px solid #3B2E38;
  box-shadow: 0 0 8px #35F9F755, 0 0 16px #BA60C455;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7em;
  width: 100%;
  box-sizing: border-box;
}

.vaporwave-options label:hover,
.vaporwave-options label:focus-within {
  background: linear-gradient(90deg, #35F9F733 0%, #BA60C433 100%);
  border-color: #35F9F7;
  box-shadow: 0 0 16px #35F9F7cc, 0 0 32px #BA60C4cc;
}

.vaporwave-options input[type="checkbox"] {
  accent-color: #35F9F7;
  margin-right: 0.7em;
  transform: scale(1.18);
  box-shadow: 0 0 6px #35F9F7cc, 0 0 10px #BA60C4cc;
  background: #1a1a2a;
  border-radius: 4px;
}

.vaporwave-options .vaporwave-input.fullwidth {
  width: 100%;
  max-width: 540px;
  min-width: 0;
  margin-left: 0;
  margin-top: 0.7em;
  margin-bottom: 0.2em;
  display: block;
  box-sizing: border-box;
}

.vaporwave-input,
.vaporwave-textarea {
  background: #1a1a2a;
  color: #aafcff;
  border: 1.5px solid #35F9F7;
  border-radius: 6px;
  padding: 0.4em 0.8em;
  font-size: 0.85em;
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  box-shadow: 0 0 8px #35F9F755;
  transition: border 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 540px;
  min-width: 0;
  margin: 0.7em 0 0.2em 0;
  display: block;
  box-sizing: border-box;
}

.vaporwave-input:focus,
.vaporwave-textarea:focus {
  border: 1.5px solid #BA60C4;
  box-shadow: 0 0 16px #BA60C4cc;
}

.vaporwave-btn {
  margin-top: 1.2em;
  padding: 0.5em 1.2em;
  font-size: 1.05em;
  background: linear-gradient(90deg, #35F9F7 0%, #BA60C4 100%);
  color: #3B2E38;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 16px #35F9F7aa, 0 0 32px #BA60C4aa;
  text-shadow: 0 0 8px #fff8;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.vaporwave-btn:hover {
  background: linear-gradient(90deg, #BA60C4 0%, #35F9F7 100%);
  color: #fff;
  box-shadow: 0 0 32px #BA60C4cc, 0 0 48px #35F9F7cc;
}

/* Disclaimer styling for Participate page */
.collapsible-disclaimer {
  position: relative;
  margin-bottom: 1.7em;
}

.disclaimer-toggle {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #3B2E38 0%, #BA60C4 100%);
  color: #e05ca6;
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  font-size: 0.95em;
  font-weight: bold;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 0.7em 1.2em;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  outline: none;
}

.disclaimer-toggle[aria-expanded="true"] {
  background: linear-gradient(90deg, #BA60C4 0%, #3B2E38 100%);
  color: #35F9F7;
}

.disclaimer-content {
  background: rgba(186, 96, 196, 0.10);
  border-left: 4px solid #e05ca6;
  border-radius: 0 0 8px 8px;
  padding: 0.7em 1.2em 0.7em 1.1em;
  color: #e05ca6;
  font-size: 0.92em;
  font-family: 'Share Tech Mono', 'Consolas', monospace;
  line-height: 1.6;
  box-shadow: none;
  animation: fadeInDisclaimer 0.3s;
}

@keyframes fadeInDisclaimer {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body>*:not(.background):not(.site-header):not(.nav-overlay):not(.nav-panel) {
  padding-left: 2em;
  padding-right: 2em;
}

@media (max-width: 800px) {
  body {
    font-size: 1.02em;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .site-header {
    min-height: 100px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    width: 100vw;
  }

  .site-title {
    font-size: 1.05em;
    padding-bottom: 1px;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin: auto;
    grid-column: 1;
  }

  .nav-panel {
    top: 80px;
    width: 180px;
    transform: scale(0.7);
    transform-origin: top left;
    background: transparent;
    opacity: 1;
    z-index: 1300;
    padding: 0;
    box-shadow: none;
    pointer-events: none;
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .nav-panel ul {
    gap: 10px;
    padding: 16px 0 16px 18px;
    align-items: flex-start;
    width: 100%;
  }

  .nav-panel a {
    min-width: 0;
    font-size: 1.15em;
    padding: 18px 24px;
    border-radius: 16px;
    margin: 0;
    text-align: left;
    opacity: 0.98;
    background: rgba(59, 46, 56, 0.97);
    pointer-events: auto;
    box-shadow: 0 0 18px 4px #35F9F755, 0 0 32px 8px #BA60C455;
  }

  .content {
    margin-top: 140px;
    max-width: 98vw;
    padding: 5vw 5vw 6vw 5vw;
    border-radius: 10px;
    box-sizing: border-box;
    transform: scale(0.75);
    font-size: 1.08em;
    display: grid;
    grid-template-columns: 1fr;
  }

  .content-hero {
    max-width: 98vw;
    margin-bottom: 24px;
    border-radius: 10px;
  }
}