/* ============================================================================
   Docs Page - Ghost Infrastructure Brand
   ============================================================================ */

.docs-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #050505;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Override styles.css body background */
.docs-page::before {
  display: none !important;
}

/* Brand gradient background */
.docs-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Video Background - Rick Roll */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Minimal overlay - Rick Roll clearly visible */
.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.content {
  max-width: 480px;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Card with brand border */
.card {
  background: rgba(5, 5, 5, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

/* Accent glow line at top */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.card-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.card-body {
  margin-bottom: 32px;
}

.statement {
  font-size: 18px;
  color: #fff;
  margin: 14px 0;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.spacer {
  height: 24px;
}

.fomo {
  font-size: 20px;
  color: #fff;
  margin: 20px 0;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sub-fomo {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.card-footer {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.95) 100%);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .card {
    padding: 36px 28px;
  }

  .card-title {
    font-size: 36px;
  }

  .card-footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
