:root {
  --bg: #081224;
  --bg-soft: #0f1f39;
  --card: rgba(15, 31, 57, 0.75);
  --text: #e7edf8;
  --muted: #a9b8d4;
  --accent: #6ea8fe;
  --accent-2: #5eead4;
  --warn: #fbbf24;
  --ok: #34d399;
  --border: rgba(173, 196, 255, 0.22);
  --shadow: 0 20px 50px rgba(3, 10, 24, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(94, 234, 212, 0.15), transparent 60%),
    radial-gradient(850px 450px at -10% 20%, rgba(110, 168, 254, 0.2), transparent 65%),
    linear-gradient(180deg, #081224 0%, #0a1730 45%, #09172a 100%);
  line-height: 1.65;
}

a { color: #b6dbff; }

a:hover { color: #d4ebff; }

#top-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 18, 36, 0.85);
  backdrop-filter: blur(14px);
}

.site-id { font-size: 0.9rem; font-weight: 700; color: #c8daf9; }

#lang-switcher {
  display: inline-flex;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(5, 12, 24, 0.55);
}

#google_translate_element {
  min-width: 170px;
}

#google_translate_element .goog-te-gadget {
  color: #c6d8f7 !important;
  font-size: 0.75rem !important;
}

#google_translate_element .goog-te-combo {
  border-radius: 999px;
  border: 1px solid rgba(173, 196, 255, 0.35);
  background: rgba(8, 18, 36, 0.95);
  color: #c6d8f7;
  padding: 0.25rem 0.4rem;
  font-size: 0.75rem;
}

#site-header,
#main-content,
#site-footer,
#disclaimer-banner,
#not-portal {
  width: min(1024px, calc(100% - 2rem));
  margin-inline: auto;
}

#site-header {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(14, 31, 57, 0.88), rgba(8, 18, 36, 0.95));
  box-shadow: var(--shadow);
}

.header-eyebrow {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0.55rem 0 0.8rem;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.18;
}

h1 span { color: #9ac4ff; }

.header-subtitle { margin: 0; color: #c8d7ef; max-width: 65ch; }

#disclaimer-banner,
#not-portal {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

#disclaimer-banner {
  background: rgba(251, 191, 36, 0.09);
  border-color: rgba(251, 191, 36, 0.28);
}

#disclaimer-banner .label { font-weight: 800; margin-right: 0.3rem; }

#not-portal {
  background: rgba(110, 168, 254, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}

#main-content {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 2rem;
}

.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.section-label {
  margin: 0;
  color: #9db9e5;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

h2 { margin: 0.2rem 0 0.65rem; font-size: 1.35rem; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 0.65rem;
}

.status-badge.pending {
  color: #f8e7bf;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.28);
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 7px rgba(251, 191, 36, 0.14);
}

.timeline {
  border-left: 2px solid rgba(110, 168, 254, 0.45);
  margin-left: 0.35rem;
  padding-left: 1rem;
}

.timeline-item {
  position: relative;
  margin: 0 0 1rem;
  padding: 0.35rem 0.2rem 0.35rem 0.6rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.45rem;
  top: 0.75rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: #8ec5ff;
  box-shadow: 0 0 0 5px rgba(110, 168, 254, 0.18);
}

.timeline-date {
  margin: 0;
  color: #b5c8ea;
  font-weight: 700;
  font-size: 0.88rem;
}

.policy-list { list-style: none; padding: 0; margin: 0.6rem 0 0; }
.policy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  align-items: baseline;
}

.contact-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8, 17, 34, 0.55);
}

.contact-card .org { margin: 0 0 0.6rem; font-weight: 800; }
.contact-card .meta { color: #ccdaef; }

#site-footer {
  margin: 0 auto 1.8rem;
  text-align: center;
  color: #b9c8de;
  font-size: 0.9rem;
}

#site-footer .rule {
  margin: 0.5rem auto 1rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 196, 255, 0.4), transparent);
}

@media (max-width: 720px) {
  #site-header { padding: 1.3rem; }
  .section { padding: 1rem; }
  #top-bar { padding: 0.65rem 0.75rem; }
  .site-id { font-size: 0.8rem; }
}
