/* ===== CUSTOM CURSOR ===== */
*, *::before, *::after {
  cursor: none !important;
  box-sizing: border-box;
}

#cursor-outer {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid #df860a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, border-color 0.15s, background 0.15s;
  will-change: left, top;
}

#cursor-inner {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #df860a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #df860a, 0 0 20px rgba(223, 134, 10, 0.5);
  transition: width 0.1s, height 0.1s;
  will-change: left, top;
}

#cursor-outer::before,
#cursor-outer::after {
  content: '';
  position: absolute;
  background: rgba(223, 134, 10, 0.5);
}

#cursor-outer::before {
  width: 1px;
  height: 8px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#cursor-outer::after {
  width: 8px;
  height: 1px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.cursor-hover #cursor-outer {
  width: 55px;
  height: 55px;
  border-color: #ff6b1a;
  background: rgba(223, 134, 10, 0.06);
}

.cursor-click #cursor-inner {
  width: 12px;
  height: 12px;
  background: #fff;
}

/* ===== BASE ===== */
:root {
  --accent: #df860a;
  --accent-hot: #ff6b1a;
  --bg: #000;
  --bg2: #060606;
  --text: #e8e4e0;
  --text-muted: #7a7570;
  --font-hud: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --max-w: 900px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: pageIn 0.8s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
::selection { background: var(--accent); color: #000; }

/* ===== BACK BUTTON ===== */
.back-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hud);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text) !important;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(223, 134, 10, 0.4);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.back-btn::before {
  content: '←';
  font-size: 14px;
}

.back-btn:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  box-shadow: 0 0 20px rgba(223, 134, 10, 0.2);
  transform: translateY(-2px);
}

.back-btn:active {
  transform: scale(0.97);
}

/* ===== PAGE WRAPPER ===== */
.pp-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px 80px;
}

/* ===== PAGE HEADER ===== */
.pp-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.pp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pp-title {
  font-family: var(--font-hud) !important;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
  margin: 0 0 16px;
}

.pp-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pp-date strong { color: var(--accent); }

.accent-bar {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 15px var(--accent);
  margin: 20px auto 0;
}

/* ===== INTRO TEXT ===== */
.pp-intro {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-muted);
  line-height: 1.9;
  border-left: 2px solid rgba(223, 134, 10, 0.3);
  padding-left: 20px;
  margin-bottom: 48px;
}

.pp-intro strong { color: var(--accent); }

/* ===== SECTION BLOCKS ===== */
.pp-section {
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: sectionIn 0.6s ease forwards;
}

@keyframes sectionIn {
  to { opacity: 1; transform: none; }
}

.pp-section-inner {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 2px solid rgba(223, 134, 10, 0.25);
  border-radius: 2px;
  padding: 28px 30px;
  transition: border-left-color 0.3s ease, background 0.3s ease;
}

.pp-section-inner:hover {
  border-left-color: var(--accent);
  background: rgba(223, 134, 10, 0.02);
}

.pp-section h2 {
  font-family: var(--font-hud) !important;
  font-size: clamp(13px, 2.5vw, 16px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text) !important;
  margin: 0 0 14px !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-section h2::before {
  content: attr(data-num);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.1em;
}

.pp-section p {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 16px) !important;
  color: rgba(232, 228, 224, 0.6) !important;
  line-height: 1.85 !important;
  margin: 0 0 10px !important;
}

.pp-section p:last-child { margin-bottom: 0 !important; }

.pp-section p strong,
.pp-section strong { color: var(--accent); }

.pp-section ul {
  font-family: var(--font-body);
  font-size: clamp(13px, 2.2vw, 15px);
  color: rgba(232, 228, 224, 0.6);
  line-height: 1.8;
  padding-left: 20px;
  margin: 8px 0;
}

/* Note box */
.pp-note {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(223, 134, 10, 0.05);
  border: 1px solid rgba(223, 134, 10, 0.2);
  border-radius: 2px;
  padding: 14px 18px;
  margin-top: 12px;
}

.pp-note strong { color: var(--accent); }

/* ===== FOOTER ===== */
.pp-footer {
  text-align: center;
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

.pp-footer::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px var(--accent);
  margin: 0 auto 20px;
}

.pp-footer p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
}

/* Animation delays for sections */
.pp-section:nth-child(1)  { animation-delay: 0.05s; }
.pp-section:nth-child(2)  { animation-delay: 0.10s; }
.pp-section:nth-child(3)  { animation-delay: 0.15s; }
.pp-section:nth-child(4)  { animation-delay: 0.20s; }
.pp-section:nth-child(5)  { animation-delay: 0.25s; }
.pp-section:nth-child(6)  { animation-delay: 0.30s; }
.pp-section:nth-child(7)  { animation-delay: 0.35s; }
.pp-section:nth-child(8)  { animation-delay: 0.40s; }
.pp-section:nth-child(9)  { animation-delay: 0.45s; }
.pp-section:nth-child(10) { animation-delay: 0.50s; }
.pp-section:nth-child(11) { animation-delay: 0.55s; }
.pp-section:nth-child(12) { animation-delay: 0.60s; }
.pp-section:nth-child(13) { animation-delay: 0.65s; }
.pp-section:nth-child(14) { animation-delay: 0.70s; }
.pp-section:nth-child(15) { animation-delay: 0.75s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .pp-wrap { padding: 90px 18px 60px; }
  .back-btn { top: 16px; right: 16px; font-size: 10px; padding: 8px 14px; }
  #cursor-outer, #cursor-inner { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}