:root {
  --bg: #0b0d12;
  --fg: #e8ecf1;
  --card: #121622;
  --alt: #0f131d;
  --border: #1f2430;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--alt) 0%, var(--bg) 90%);
  color: var(--fg);
  font: 16px/1.55 Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: var(--fg);
  text-decoration: none;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(11, 13, 18, 0.6);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: normal;
}
.nav nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
#languageSelector {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: 0.2s background, 0.2s transform;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  background: linear-gradient(90deg, #f5d742, #e6b800, #cc9a00);
  color: #0b0d12;
  border: none;
  box-shadow: 0 2px 18px rgba(230, 184, 0, 0.6);
}
.button-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1rem;
}
.btn.secondary {
  background-color: #808080;
  color: #e8ecf1;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  box-shadow: none;
}
.btn.secondary:hover {
  background-color: #555;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 64px 20px 6px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.hero-text {
  display: inline-block;
  text-align: justify;
}
.hero p {
  color: #b9bbda;
}

.hero-text h1 {
  display: inline-block;
}

.hero-text p {
  max-width: 100%;
}
.hero-art img.hero-logo {
  display: block;
  margin: 0 auto;
  max-width: 340px;
  width: 98%;
  height: auto;
  filter: drop-shadow(0 2px 16px #1414147b);
}
.invit-text {
  font-size: 20px;
  text-align: center;
}
.highlight {
  background: linear-gradient(90deg, #f5d742 0%, #e6b800 65%, #cc9a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section {
  padding: 56px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.alt {
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
#features h2 {
  margin-top: 64px;
}
.grid.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.grid.features article {
  background: var(--card);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
code {
  background: #0c1220;
  border: 1px solid #1b2233;
  padding: 2px 6px;
  border-radius: 6px;
}
.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.screens img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.zoom-toggle {
  display: none;
}
.zoom-toggle:checked + label img {
  transform: scale(2);
  position: relative;
  z-index: 10;
}
.bullets {
  display: grid;
  gap: 2px;
}
.lower-tip {
  margin-top: 50px;
}
.tip a {
  color: #1e90ff;
  text-decoration: underline;
  cursor: pointer;
}
#faq details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 16px;
}
#faq summary {
    cursor: pointer;
    font-weight: 600;
}
#faq p {
    margin-top: 12px;
    color: #b9bbda;
    line-height: 1.6;
}
.faq-policy-link, .discord-invite-link, .tip a {
    color: #1e90ff;
    text-decoration: underline;
    font-weight: 500;
}
.languages-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.languages-list {
  min-width: 220px;
  padding-left: 32px;
}
.languages-list h2 {
  margin-bottom: 16px;
}

.languages-list .bullets {
  padding-left: 1em;
}
.languages-desc {
  font-size: 1rem;
  color: #b9bbda;
  margin-bottom: 16px;
}
.lang-img {
  width: 400px;
  max-width: 30vw;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  margin-right: 16px;
}
.footer {
  background-color: var(--bg);
  color: #c7c7d6;
  font-size: 0.9rem;
  padding: 40px 24px 24px;
  border-top: 1px solid #2a2a3a;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 24px;
  align-items: flex-start;
}
.footer-logo {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-col h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
  display: flex;
  align-items: center;
}
.footer-col p {
  max-width: 280px;
  line-height: 1.5;
  word-break: break-word;
  text-align: justify;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #c7c7d6;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
  color: #ffc107;
}
.footer-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.links a {
  display: inline-block;
  margin-right: 16px;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #2a2a3a;
  padding-top: 12px;
  font-size: 0.8rem;
  color: #88889a;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: #e6b800;
  color: #0b0d12;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(230, 184, 0, 0.6);
  transition: 0.2s background, 0.2s transform;
}
.home-btn img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.home-btn:hover {
  background-color: #cc9a00;
  transform: translateY(-1px);
}
.policy-divider {
  border: none;
  border-top: 3px solid #e6b800;
  width: 100%;
  margin: 36px 0 10px 0;
  opacity: 0.85;
}
.last-updated {
  font-size: 0.95rem;
  color: #b9bbda;
  text-align: right;
  margin-bottom: 32px;
}
.mail a {
  color: #1e90ff;
  text-decoration: underline;
  cursor: pointer;
}
.terms a {
  color: #1e90ff;
  text-decoration: underline;
  cursor: pointer;
}
.faq-policy-link {
  color: #1e90ff;
  text-decoration: underline;
  cursor: pointer;
}
.discord-invite-link {
  color: #1e90ff;
  text-decoration: underline;
  cursor: pointer;
}
