/* ==========================================================================
   Main Styles
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* ------------------------------------
   Background & Effects
------------------------------------ */

.animated-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 50%, #0a0a0a 0%, #000 50%);
  z-index: -2;
  animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: radial-gradient(circle, #ffd36a, transparent);
  border-radius: 50%;
  opacity: 0;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.ambient-glow {
  position: fixed;
  width: 800px; height: 800px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  animation: pulse 8s ease-in-out infinite;
}

.glow-1 {
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
  top: -300px; right: -200px;
}

.glow-2 {
  background: radial-gradient(circle, rgba(255,211,106,0.15), transparent 70%);
  bottom: -300px; left: -200px;
  animation-delay: 4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

/* ------------------------------------
   Hero Section
------------------------------------ */

.hero {
  text-align: center;
  padding: 180px 20px 120px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-container {
  width: 140px; height: 140px;
  margin: 0 auto 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffd36a, #b8962e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(212,175,55,0.5), 0 0 100px rgba(212,175,55,0.3);
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
}

.logo-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffd36a, #b8962e, #ffd36a);
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
  animation: rotate 3s linear infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-container img { width: 250px; }

.hero h1 {
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd36a 0%, #d4af37 50%, #ffd36a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 80px rgba(212,175,55,0.5);
  margin-bottom: 20px;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero p {
  font-size: 20px;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------
   Buttons
------------------------------------ */

.btn {
  padding: 18px 42px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before { width: 300px; height: 300px; }

.primary {
  background: linear-gradient(135deg, #ffd36a, #d4af37);
  color: #000;
  box-shadow: 0 10px 40px rgba(212,175,55,0.6);
  border: none;
}

.primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(212,175,55,0.8);
}

.secondary {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.secondary:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 40px rgba(212,175,55,0.6);
}

.vote {
  border-color: #ffd36a;
  box-shadow: 0 0 30px rgba(255,211,106,0.3);
}

.vote:hover { background: #ffd36a; color: #000; }

/* ------------------------------------
   Stats Section
------------------------------------ */

.stats {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats.visible { opacity: 1; transform: translateY(0); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
  transition: left 0.6s;
}

.stat-card:hover::before { left: 100%; }
.stat-card.visible { opacity: 1; transform: translateY(0); }

.stat-card:hover {
  border-color: #d4af37;
  box-shadow: 0 20px 60px rgba(212,175,55,0.3), inset 0 0 30px rgba(212,175,55,0.1);
  transform: translateY(-10px);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: block;
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-label {
  font-size: 18px;
  color: #bbb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-sublabel {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}

/* ------------------------------------
   Comparison Table
------------------------------------ */

.comparison {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison.visible { opacity: 1; transform: translateY(0); }

.comparison h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.comparison.visible h2 { opacity: 1; transform: translateY(0); }

.comparison-subtitle {
  text-align: center;
  color: #bbb;
  font-size: 18px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.comparison.visible .comparison-subtitle { opacity: 1; transform: translateY(0); }

.comparison-table {
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.comparison.visible .comparison-table { opacity: 1; transform: translateY(0); }

.table-wrapper { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; }

thead {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-bottom: 2px solid rgba(212,175,55,0.3);
}

th {
  padding: 24px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: #ffd36a;
  white-space: nowrap;
}

th:first-child { padding-left: 40px; }
th:last-child { text-align: center; }

tbody tr {
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: all 0.3s ease;
}

tbody tr:hover { background: rgba(212,175,55,0.05); }
tbody tr:last-child { border-bottom: none; }

td {
  padding: 22px 20px;
  color: #ccc;
  font-size: 15px;
}

td:first-child { padding-left: 40px; font-weight: 600; color: #fff; }
td:last-child { text-align: center; }

.check { color: #4ade80; font-size: 22px; font-weight: 900; }
.cross { color: #ef4444; font-size: 22px; font-weight: 900; }

.highlight-cell {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  font-weight: 700;
  color: #ffd36a;
}

/* ------------------------------------
   Features Grid
------------------------------------ */

.features {
  padding: 120px 20px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.features.visible { opacity: 1; transform: translateY(0); }

.features h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 80px;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.features.visible h2 { opacity: 1; transform: translateY(0); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.feature {
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 45px;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
  transition: left 0.6s;
}

.feature:hover::before { left: 100%; }
.feature.visible { opacity: 1; transform: translateY(0); }

.feature:hover {
  border-color: #d4af37;
  box-shadow: 0 30px 80px rgba(212,175,55,0.3), inset 0 0 30px rgba(212,175,55,0.1);
  transform: translateY(-10px);
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #ffd36a;
  font-weight: 700;
}

.feature p {
  color: #aaa;
  line-height: 1.8;
  font-size: 15px;
}

/* ------------------------------------
   Studio / About Section
------------------------------------ */

.studio {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio.visible { opacity: 1; transform: translateY(0); }

.studio::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

.studio h2 {
  color: #ffd36a;
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.studio.visible h2 { opacity: 1; transform: translateY(0); }

.studio p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #bbb;
  font-size: 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}

.studio.visible p { opacity: 1; transform: translateY(0); }

/* ------------------------------------
   Footer
------------------------------------ */

footer {
  text-align: center;
  padding: 50px 20px;
  color: #666;
  font-size: 14px;
}

/* ------------------------------------
   Navbar
------------------------------------ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.nav-tabs {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-tab {
  padding: 8px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #bbb;
  background: transparent;
  border: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-tab::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  transition: width 0.3s ease, opacity 0.3s ease;
}

.nav-tab:hover { color: #ffd36a; }
.nav-tab:hover::after { width: 100%; }
.nav-tab.active { color: #ffd36a; }
.nav-tab.active::after { width: 100%; }

.nav-tabs:hover .nav-tab.active::after { opacity: 0; }
.nav-tabs:hover .nav-tab.active:hover::after { opacity: 1; }
.nav-tab.primary-tab { color: #ffd36a; }

/* ==========================================================================
   Legal Pages (Terms, Privacy)
   ========================================================================== */

.legal-page {
  padding: 140px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

.legal-container {
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 60px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.legal-container h1 {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-align: center;
}

.legal-updated {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.legal-section { margin-bottom: 40px; }

.legal-section h2 {
  font-size: 24px;
  color: #ffd36a;
  margin-bottom: 16px;
  font-weight: 700;
}

.legal-section h3 {
  font-size: 18px;
  color: #d4af37;
  margin: 24px 0 12px;
  font-weight: 600;
}

.legal-section p {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-section ul {
  color: #bbb;
  line-height: 1.8;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 8px;
  font-size: 15px;
}

.legal-section li strong { color: #fff; }

.legal-section a {
  color: #ffd36a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-contact {
  padding: 30px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-radius: 16px;
  margin-top: 50px;
}

.legal-about {
  padding: 30px;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.15);
  margin-top: 40px;
  margin-bottom: 30px;
}

.legal-about h3 {
  font-size: 20px;
  color: #ffd36a;
  margin-bottom: 12px;
  font-weight: 700;
}

.legal-about p {
  color: #aaa;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

.legal-acknowledgment {
  text-align: center;
  color: #888;
  font-size: 14px;
  font-style: italic;
  padding-top: 30px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

/* ==========================================================================
   Docs Page
   ========================================================================== */

.docs-page {
  display: flex;
  padding-top: 70px;
  min-height: 100vh;
}

.docs-sidebar {
  position: fixed;
  top: 70px; left: 0;
  width: 260px;
  height: calc(100vh - 70px);
  background: rgba(10,10,10,0.85);
  border-right: 1px solid rgba(212,175,55,0.15);
  padding: 25px 0;
  overflow-y: auto;
  z-index: 100;
  backdrop-filter: blur(30px);
}

.docs-sidebar::-webkit-scrollbar { width: 4px; }
.docs-sidebar::-webkit-scrollbar-track { background: transparent; }
.docs-sidebar::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.3);
  border-radius: 2px;
}

.sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  margin-bottom: 15px;
}

.sidebar-header h3 {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-link {
  padding: 10px 20px;
  color: #888;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  margin: 0 8px;
  border-radius: 0 6px 6px 0;
}

.sidebar-link:hover {
  color: #ffd36a;
  background: rgba(212,175,55,0.08);
  border-left-color: rgba(212,175,55,0.5);
}

.sidebar-link.active {
  color: #ffd36a;
  background: rgba(212,175,55,0.12);
  border-left-color: #ffd36a;
}

.docs-content {
  flex: 1;
  margin-left: 260px;
  padding: 40px 50px;
  max-width: calc(100% - 260px);
}

.docs-container {
  max-width: 850px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out forwards;
}

.docs-intro { margin-bottom: 2.5rem; }

.docs-hero {
  text-align: center;
  padding: 30px 0 50px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  margin-bottom: 40px;
}

.docs-hero h1 {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.docs-hero p {
  font-size: 16px;
  color: #999;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.docs-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.docs-section > h2 {
  font-size: 28px;
  color: #ffd36a;
  margin-bottom: 24px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.docs-card {
  background: rgba(18,18,18,0.7);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.docs-card:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.docs-card.highlight {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(145deg, rgba(212,175,55,0.08), rgba(18,18,18,0.7));
}

.docs-card h3 {
  font-size: 20px;
  color: #ffd36a;
  margin-bottom: 14px;
  font-weight: 600;
}

.docs-card h4 {
  font-size: 15px;
  color: #d4af37;
  margin: 18px 0 10px;
  font-weight: 600;
}

.docs-card p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 14px;
}

.docs-card ul, .docs-card ol {
  color: #aaa;
  line-height: 1.7;
  margin-left: 20px;
  margin-bottom: 14px;
  padding-left: 0;
}

.docs-card li {
  margin-bottom: 6px;
  font-size: 14px;
}

.docs-card li strong { color: #ddd; }

.docs-card a {
  color: #ffd36a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.docs-card a:hover {
  color: #fff;
  text-decoration: underline;
}

.docs-card code {
  background: rgba(212,175,55,0.12);
  color: #ffd36a;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 13px;
}

.command-card .command-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.command-meta .meta-item { font-size: 12px; color: #777; }
.command-meta .meta-item strong { color: #999; }

.info-box {
  background: rgba(212,175,55,0.06);
  border-left: 3px solid #ffd36a;
  padding: 14px 18px;
  margin: 14px 0;
  border-radius: 0 6px 6px 0;
}

.info-box strong { color: #ffd36a; }
.info-box ul { margin: 8px 0 0 18px; }

.warning-box {
  background: rgba(239,68,68,0.08);
  border-left: 3px solid #ef4444;
  padding: 14px 18px;
  margin: 14px 0;
  border-radius: 0 6px 6px 0;
  color: #fca5a5;
}

.warning-box strong { color: #ef4444; }

.status-active { color: #4ade80; font-weight: 600; }
.status-paused { color: #ef4444; font-weight: 600; }

.troubleshoot-card h3 { color: #eee; }

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item h4 {
  color: #ddd;
  margin-bottom: 6px;
  font-size: 14px;
}

.faq-item p { margin-bottom: 0; }

/* docs tables */
.docs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.docs-table th {
  background: rgba(212,175,55,0.1);
  color: #ffd36a;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.docs-table td {
  padding: 11px 16px;
  color: #aaa;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  font-size: 13px;
}

.docs-table tr:last-child td { border-bottom: none; }
.docs-table tr:hover td { background: rgba(212,175,55,0.04); }

.resources-card { padding: 30px; }

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-2px);
}

.resource-icon { font-size: 20px; }
.resource-text { color: #ddd; font-weight: 600; font-size: 14px; }

.docs-footer {
  text-align: center;
  padding: 40px 24px;
  background: rgba(18,18,18,0.6);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 12px;
  margin-top: 50px;
}

.docs-footer h3 {
  font-size: 20px;
  color: #ffd36a;
  margin-bottom: 10px;
  font-weight: 600;
}

.docs-footer p {
  color: #888;
  font-size: 14px;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd36a, #d4af37);
  border: none;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  font-size: 24px;
  color: #000;
}

/* ==========================================================================
   Status Page
   ========================================================================== */

.status-page {
  padding: 140px 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

.status-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.status-header h1 {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd36a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.status-header p {
  font-size: 18px;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.status-container {
  background: linear-gradient(145deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 0;
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.status-container.visible { opacity: 1; }

.iframe-wrapper {
  width: 100%;
  min-height: 800px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.status-iframe {
  width: 100%; height: 100%;
  min-height: 800px;
  border: none;
  display: block;
  background: transparent;
}

.status-footer {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(18,18,18,0.6);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.status-footer.visible { opacity: 1; }
.status-footer p { color: #888; font-size: 14px; margin-bottom: 12px; }

.status-footer a {
  color: #ffd36a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.status-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   Responsive / Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .docs-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 260px;
  }
  .docs-sidebar.open { transform: translateX(0); }
  .docs-content { margin-left: 0; max-width: 100%; padding: 30px 24px; }
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* navbar */
  .navbar { padding: 20px 15px; height: auto; }
  .nav-tabs { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .nav-tab { font-size: 12px; }

  /* hero */
  .hero h1 { font-size: 48px; }

  /* sections */
  .features h2, .comparison h2 { font-size: 36px; }
  .studio h2 { font-size: 32px; }
  .comparison-subtitle { font-size: 16px; }

  /* tables */
  th, td { padding: 16px 12px; font-size: 14px; }
  th:first-child, td:first-child { padding-left: 20px; }

  /* grids */
  .grid, .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 48px; }
  .stat-label { font-size: 16px; }

  /* legal */
  .legal-container { padding: 40px 25px; }
  .legal-container h1 { font-size: 36px; }
  .legal-section h2 { font-size: 20px; }
  .legal-section h3 { font-size: 16px; }
  .legal-page { padding: 120px 15px 60px; }

  /* docs */
  .docs-hero h1 { font-size: 32px; }
  .docs-hero p { font-size: 15px; }
  .docs-section > h2 { font-size: 24px; }
  .docs-card { padding: 20px; }
  .docs-card h3 { font-size: 18px; }
  .docs-card h4 { font-size: 14px; }
  .docs-card p, .docs-card li { font-size: 13px; }
  .resource-links { grid-template-columns: 1fr; }
  .docs-footer { padding: 30px 20px; }

  /* status */
  .status-page { padding: 120px 15px 40px; }
  .status-header h1 { font-size: 36px; }
  .status-header p { font-size: 16px; }
  .status-container { border-radius: 16px; }
  .iframe-wrapper, .status-iframe { min-height: 600px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .comparison h2, .features h2 { font-size: 28px; }
  .comparison-subtitle { font-size: 14px; margin-bottom: 40px; }
  th, td { padding: 12px 8px; font-size: 12px; }
  th:first-child, td:first-child { padding-left: 12px; }
  .check, .cross { font-size: 18px; }
  .stat-number { font-size: 40px; }
  .stat-label { font-size: 14px; }
  .stat-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .nav-tabs { gap: 15px; }
  .nav-tab { font-size: 11px; }

  .legal-container { padding: 30px 20px; }
  .legal-container h1 { font-size: 28px; }
  .legal-section h2 { font-size: 18px; }
  .legal-section ul { margin-left: 16px; }

  .docs-hero h1 { font-size: 26px; }
  .docs-section > h2 { font-size: 20px; }
  .docs-card { padding: 18px 16px; }
  .docs-table th, .docs-table td { padding: 10px 12px; font-size: 12px; }
  .docs-content { padding: 20px 16px; }

  .status-header h1 { font-size: 28px; }
  .status-header p { font-size: 15px; }
}
