/* ===== QUANTORA OLED BLACK: PROTOCOL V3 ===== */

:root {
  --neon-blue: #3b82f6;
  --pure-black: #000000;
  --dark-panel: #050505;
  --border-color: #1a1a1a;
  --text-main: #ffffff;
  --text-dim: #777777;
}

html {
  scroll-behavior: smooth;
}

/* Force Absolute Black on entire page */
html, body {
  background-color: var(--pure-black) !important;
  color: var(--text-main);
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* --- GHOST NAVIGATION (No Blocks) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 8%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 9999;
  box-sizing: border-box;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
}

.logo span {
  color: var(--neon-blue);
}

nav {
  display: flex;
  gap: 40px;
}

/* Removing all "old style" blocks and boxes */
nav a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent !important; /* No more boxes */
  border: none !important;
  padding: 0 !important;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

/* --- HERO SECTION --- */
.hero {
  padding: 180px 10% 80px;
  background-color: var(--pure-black) !important;
  border-bottom: 1px solid var(--border-color);
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 950;
  letter-spacing: -4px;
  margin-bottom: 15px;
  color: #fff;
}

.hero p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 600px;
}

.hero span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #333; /* Dark gray for "Last Updated" */
  text-transform: uppercase;
  margin-top: 20px;
  display: block;
}

/* --- CONTENT AREA --- */
.content {
  padding: 80px 10% 120px;
  background-color: var(--pure-black) !important;
}

/* Warning Box (OLED Style) */
.box.warning {
  background: #080000; /* Deepest red tint */
  border: 1px solid #300;
  border-left: 4px solid #f44336;
  padding: 30px;
  color: #ff9999;
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
}

/* Section Headings */
h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--neon-blue);
  margin-top: 80px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

/* Lists and Bullets */
ul {
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

ul li {
  list-style: none;
  background: var(--dark-panel);
  border: 1px solid var(--border-color);
  padding: 20px;
  color: #bbb;
  font-size: 15px;
  transition: 0.3s;
}

ul li::before {
  content: '>';
  color: var(--neon-blue);
  margin-right: 15px;
  font-weight: 900;
}

ul li:hover {
  border-color: var(--neon-blue);
  color: #fff;
  transform: translateX(5px);
}

/* Final Warning Footer */
.final-warning {
  margin-top: 100px;
  padding: 40px;
  border: 1px dashed #222;
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 1px;
}



/* ======================================
   OLED RISK PAGE — MOBILE FIX
====================================== */

@media (max-width:768px){

/* NAV */
.nav{
  padding:16px 20px;
}

.nav-container{
  flex-direction:column;
  gap:14px;
}

nav{
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}

.logo{
  font-size:18px;
}

/* HERO */
.hero{
  padding:130px 20px 60px;
}

.hero h1{
  font-size:32px;
  letter-spacing:-1px;
}

.hero p{
  font-size:14px;
}

/* CONTENT */
.content{
  padding:60px 20px 80px;
}

/* WARNING BOX */
.box.warning{
  padding:20px;
  font-size:14px;
  margin-bottom:50px;
}

/* HEADINGS */
h2{
  font-size:11px;
  letter-spacing:3px;
  margin-top:60px;
  margin-bottom:20px;
}

/* LISTS */
ul{
  grid-template-columns:1fr;
}

ul li{
  font-size:14px;
  padding:16px;
}

/* FINAL WARNING */
.final-warning{
  margin-top:70px;
  padding:22px;
  font-size:14px;
}

/* SAFETY */
h1,h2,p,li{
  word-break:break-word;
}

}
