/* ===== DOCUMENT PAGES ===== */
.docs-main {
  min-height: 100vh;
  padding: 100px 24px 80px;
  background: var(--bg);
}
.docs-container {
  max-width: 800px;
  margin: 0 auto;
}
.docs-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.docs-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.docs-body strong {
  color: var(--text);
  font-weight: 700;
  display: block;
  margin-top: 28px;
  margin-bottom: 10px;
}
.docs-body a {
  color: #a78bfa;
  border-bottom: 1px solid rgba(167,139,250,0.3);
  transition: border-color 0.2s;
  text-decoration: none;
}
.docs-body a:hover { border-color: #a78bfa; }
.docs-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 15, 24, 0.97);
  border-top: 1px solid rgba(124,58,237,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 280px;
}
.cookie-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-link {
  color: #a78bfa;
  border-bottom: 1px solid rgba(167,139,250,0.3);
  text-decoration: none;
  transition: border-color 0.2s;
}
.cookie-link:hover { border-color: #a78bfa; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-accept {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.6);
}
.cookie-decline {
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-decline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text);
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; justify-content: center; }
}
