/* DeadHangs.com — Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #000;
  color: #fff;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
  line-height: 1.7;
}

/* Ambient Background */
.ambient-bg {
  position: fixed; width: 100%; height: 100%;
  top: 0; left: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.ambient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.12;
  animation: float 20s infinite ease-in-out;
}
.orb-1 {
  width: 500px; height: 500px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: -200px; left: -200px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  bottom: -150px; right: -150px;
  animation-delay: 7s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

.content { position: relative; z-index: 1; }
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.nav {
  padding: 20px 0; position: sticky; top: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Space Mono', monospace;
  font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-decoration: none;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 14px; transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #667eea; }
.breadcrumb span { margin: 0 8px; }

/* Page Header */
.page-header {
  padding: 48px 0 32px;
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; line-height: 1.1;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: 1px;
  margin-bottom: 16px;
}
.page-header .subtitle {
  font-size: 18px; color: rgba(255,255,255,0.6);
  line-height: 1.6; max-width: 600px;
}

/* Article Content */
.article { padding-bottom: 80px; }
.article h2 {
  font-family: 'Space Mono', monospace;
  font-size: 26px; font-weight: 700;
  margin: 48px 0 16px; padding-top: 20px;
  background: linear-gradient(135deg, #667eea, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.article h3 {
  font-size: 20px; font-weight: 600;
  margin: 28px 0 10px; color: #e2e8f0;
}
.article p {
  color: rgba(255,255,255,0.8); font-size: 16px;
  line-height: 1.8; margin-bottom: 16px;
}
.article a {
  color: #667eea; text-decoration: underline;
  text-decoration-color: rgba(102,126,234,0.3);
  text-underline-offset: 3px; transition: text-decoration-color 0.2s;
}
.article a:hover { text-decoration-color: #667eea; }
.article ol, .article ul {
  margin: 16px 0 24px 24px;
  color: rgba(255,255,255,0.8);
}
.article ol li, .article ul li {
  margin-bottom: 10px; font-size: 16px; line-height: 1.7;
}
.article ol { list-style-type: decimal; }
.article ul { list-style-type: disc; }
.article strong { color: #fff; font-weight: 600; }

/* Data Table */
.data-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0 32px; font-size: 15px;
}
.data-table th {
  text-align: left; padding: 12px 16px;
  background: rgba(102,126,234,0.15);
  border-bottom: 2px solid rgba(102,126,234,0.3);
  font-weight: 600; color: #a78bfa;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Callout */
.callout {
  background: rgba(102,126,234,0.08);
  border-left: 3px solid #667eea;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px; margin: 24px 0;
}
.callout p { margin-bottom: 0; color: rgba(255,255,255,0.85); }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, rgba(102,126,234,0.12), rgba(118,75,162,0.12));
  border: 1px solid rgba(102,126,234,0.25);
  border-radius: 16px; padding: 32px; margin: 40px 0; text-align: center;
}
.cta-box h3 { color: #fff; margin-top: 0; margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff; padding: 14px 36px; border-radius: 8px;
  text-decoration: none; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(102,126,234,0.3);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102,126,234,0.4);
  text-decoration: none;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; color: #e2e8f0; font-size: 17px; margin-bottom: 8px; }
.faq-a { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; }

/* Related Pages Grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; margin: 32px 0;
}
.related-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px;
  text-decoration: none; transition: all 0.3s; display: block;
}
.related-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(102,126,234,0.4);
  transform: translateY(-2px);
}
.related-card h3 {
  font-size: 16px; font-weight: 600;
  color: #a78bfa; margin-bottom: 6px;
}
.related-card p {
  color: rgba(255,255,255,0.55); font-size: 14px;
  line-height: 1.5; margin: 0;
}

/* Footer */
.footer {
  margin-top: 60px; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center; color: rgba(255,255,255,0.4); font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .page-header h1 { font-size: 34px; }
  .article h2 { font-size: 21px; }
  .article h3 { font-size: 17px; }
  .nav-links { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 10px 12px; }
}
