/* Focus Drop — Site-wide content pages */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #020e18;
  color: #b0bec5;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #00e5ff; text-decoration: none; transition: color 0.2s; }
a:hover { color: #4dd0e1; }

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  color: #e0f7fa;
  letter-spacing: 1px;
}

h1 { font-size: 2rem; margin-bottom: 0.5rem; }
h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; color: #00e5ff; }
h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; color: #4dd0e1; }

p { margin-bottom: 1rem; }

ul, ol { margin: 0 0 1rem 1.5rem; }
li { margin-bottom: 0.4rem; }

/* Header */
.site-header {
  background: rgba(13, 51, 71, 0.6);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 3px;
  text-decoration: none;
}
.site-logo span { color: #00e5ff; }

.site-nav { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.85rem;
  color: #4dd0e1;
  letter-spacing: 0.5px;
}
.site-nav a:hover, .site-nav a.active { color: #00e5ff; }

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, #00838f, #00bcd4);
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}
.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  color: #ffffff !important;
}

/* Main content */
.site-main {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  width: 100%;
}

.page-title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.page-subtitle {
  font-size: 0.9rem;
  color: #607d8b;
  margin-bottom: 2rem;
}

/* Hero (landing page) */
.hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}
.hero-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
}
.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
}
.hero h1 span { color: #00e5ff; }
.hero-tagline {
  font-size: 0.85rem;
  color: #4dd0e1;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.hero-desc {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #90a4ae;
}
.hero .btn-play {
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  letter-spacing: 3px;
}

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-card {
  background: rgba(13, 51, 71, 0.35);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(0, 229, 255, 0.3); }
.feature-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-card h3 { margin-top: 0; font-size: 0.95rem; }

/* Chapter cards */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.chapter-card {
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.chapter-card.ch1 { background: linear-gradient(135deg, rgba(0, 96, 100, 0.3), rgba(0, 131, 143, 0.15)); border-color: rgba(0, 229, 255, 0.2); }
.chapter-card.ch2 { background: linear-gradient(135deg, rgba(74, 20, 140, 0.3), rgba(106, 27, 154, 0.15)); border-color: rgba(179, 136, 255, 0.2); }
.chapter-card.ch3 { background: linear-gradient(135deg, rgba(191, 54, 12, 0.3), rgba(216, 67, 21, 0.15)); border-color: rgba(255, 112, 67, 0.2); }
.chapter-card h3 { margin-top: 0; }

/* Legal sections */
.legal-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.1rem; margin-top: 0; }

/* Tables */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}
.info-table th, .info-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.info-table th {
  font-family: 'Orbitron', sans-serif;
  color: #4dd0e1;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Contact */
.contact-box {
  background: rgba(13, 51, 71, 0.35);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 10px;
  padding: 2rem;
  margin: 1.5rem 0;
}
.contact-box a { font-size: 1.1rem; }

/* CTA banner */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 131, 143, 0.2), rgba(0, 229, 255, 0.08));
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  margin: 2.5rem 0 0;
}

/* Footer */
.site-footer {
  background: rgba(13, 51, 71, 0.4);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #607d8b;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.site-footer nav a { color: #4dd0e1; font-size: 0.85rem; }
.site-footer .copyright { letter-spacing: 0.5px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: #00e5ff; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; letter-spacing: 4px; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(2, 14, 24, 0.97);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  }
  .nav-toggle { display: block; }
  .site-header-inner { position: relative; }
}
