@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
  min-height: 100vh;
  background: #0a0a0f;
  font-family: 'Press Start 2P', monospace;
  color: #f5e6c8;
  overflow-x: hidden;
}

/* --- Background --- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0f;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(92, 68, 9, 0.15) 0%, transparent 60%);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(10, 10, 15, 0.9);
  border-bottom: 2px solid #3d2e0a;
  backdrop-filter: blur(8px);
}

.header-title {
  font-size: 0.9rem;
  color: #c9a84c;
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

/* --- Main --- */
.main {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 90px 24px 60px;
}

.page-title {
  font-size: clamp(1.35rem, 4.5vw, 1.8rem);
  color: #c9a84c;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

/* --- Sections --- */
.doc-section {
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(30, 22, 8, 0.6);
  border: 2px solid #3d2e0a;
  border-radius: 6px;
}

.doc-section h2 {
  font-size: 0.9rem;
  color: #c9a84c;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3d2e0a;
}

.doc-section p {
  font-size: 0.675rem;
  color: #a89a7a;
  line-height: 2.2;
  margin-bottom: 10px;
}

.doc-section p:last-child { margin-bottom: 0; }

.doc-section span {
  color: inherit;
}

.doc-section .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.doc-section .info-card {
  background: rgba(10, 10, 15, 0.45);
  border: 1px solid #2e4a1e;
  border-radius: 5px;
  padding: 12px 14px;
}

.doc-section .info-card p {
  margin-bottom: 0;
}

.doc-section .yield-card {
  background: rgba(10, 10, 15, 0.45);
  border: 1px solid #3d2e0a;
  border-radius: 5px;
  padding: 14px 18px;
}

.doc-section ul {
  list-style: none;
  padding: 0;
}

.doc-section li {
  font-size: 0.675rem;
  color: #a89a7a;
  line-height: 2.2;
  padding-left: 16px;
  position: relative;
}

.doc-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #5c4409;
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.highlight { color: #c9a84c; }

@media (max-width: 480px) {
  .header { padding: 12px 16px; }
  .main { padding: 80px 16px 40px; }
  .doc-section { padding: 16px; }
}

/* === Desktop === */
@media (min-width: 900px) {
  .main { max-width: 100%; padding: 90px 1.25rem 60px; }
  .doc-section { padding: 1.25rem 1rem; }
  .doc-section h2 { font-size: 0.9rem; }
  .doc-section p,
  .doc-section li { font-size: 0.675rem; }
  .page-title { font-size: clamp(1.35rem, 4.5vw, 1.8rem); margin-bottom: 2rem; }
  .header { padding: 0.75rem 1rem; }
}
