:root {
  color-scheme: dark;
  --bg: #020b1f;
  --bg-2: #061a3a;
  --deep-blue: #003b91;
  --cyan: #00f5ff;
  --green: #a6ff00;
  --rose: #ff5a5f;
  --white: #ffffff;
  --text: #f7fbff;
  --text-soft: #c9d7ee;
  --muted: #8fa5c9;
  --surface: rgba(4, 18, 45, 0.78);
  --surface-strong: rgba(3, 15, 39, 0.94);
  --surface-soft: rgba(0, 245, 255, 0.06);
  --line: rgba(255, 255, 255, 0.14);
  --line-cyan: rgba(0, 245, 255, 0.38);
  --line-green: rgba(166, 255, 0, 0.36);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
  --glow-cyan: 0 0 32px rgba(0, 245, 255, 0.34);
  --glow-green: 0 0 28px rgba(166, 255, 0, 0.28);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 245, 255, 0.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(166, 255, 0, 0.08), transparent 26%),
    linear-gradient(145deg, #020b1f 0%, #061a3a 52%, #020814 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 24% 28%, rgba(0, 245, 255, 0.08), transparent 18%),
    radial-gradient(circle at 70% 72%, rgba(166, 255, 0, 0.055), transparent 20%);
  background-size: cover;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(2, 11, 31, 0.16), rgba(2, 11, 31, 0.88));
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(0, 245, 255, 0.28);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 245, 255, 0.12);
  background: rgba(2, 11, 31, 0.76);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(0, 245, 255, 0.28);
  background: rgba(2, 11, 31, 0.94);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.36);
}

.nav-shell {
  display: flex;
  width: min(100% - 40px, var(--max));
  min-height: var(--header);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  min-width: 208px;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 14px rgba(0, 245, 255, 0.45));
}

.brand-kicker {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a,
.mobile-menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 850;
  padding: 0 7px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.mobile-menu a:hover,
.mobile-menu a.is-active {
  border-color: rgba(0, 245, 255, 0.26);
  background: rgba(0, 245, 255, 0.08);
  color: var(--white);
}

.nav-actions {
  display: flex;
  min-width: 118px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 245, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.07);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 16px;
  border: 1px solid var(--line-cyan);
  border-radius: var(--radius);
  background: rgba(2, 11, 31, 0.96);
  padding: 10px;
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.page-main {
  padding-top: var(--header);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 94px 0;
}

.section.compact {
  padding: 62px 0;
}

.section-band {
  border-block: 1px solid rgba(0, 245, 255, 0.13);
  background: rgba(255, 255, 255, 0.018);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 82px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.14);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 78% 42%, rgba(0, 245, 255, 0.16), transparent 26%),
    radial-gradient(circle at 20% 68%, rgba(166, 255, 0, 0.08), transparent 24%),
    linear-gradient(110deg, rgba(2, 11, 31, 0.98), rgba(6, 26, 58, 0.92) 52%, rgba(2, 8, 20, 0.98));
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(2, 11, 31, 0.96), transparent 38%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.48;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.hero-content,
.page-hero-content {
  max-width: 850px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.diamond-frame {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.16), transparent 48%),
    rgba(2, 11, 31, 0.68);
  box-shadow: var(--glow-cyan), var(--shadow);
  overflow: hidden;
}

.diamond-frame::before,
.diamond-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.diamond-frame::before {
  inset: 26px;
  border: 2px solid rgba(0, 59, 145, 0.82);
}

.diamond-frame::after {
  width: 64%;
  height: 64%;
  border: 1px solid rgba(166, 255, 0, 0.18);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
}

.diamond-frame img {
  position: relative;
  z-index: 1;
  width: min(56%, 220px);
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 245, 255, 0.75));
}

.sami-badge {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 220px;
  border: 1px solid rgba(166, 255, 0, 0.36);
  border-radius: var(--radius);
  background: rgba(2, 11, 31, 0.88);
  box-shadow: var(--glow-green);
  padding: 16px;
}

.sami-badge span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sami-badge strong {
  color: var(--white);
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 126px 0 78px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.14);
}

.page-hero-content {
  position: relative;
}

.page-hero-content::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  width: 92px;
  height: 92px;
  content: "";
  background: url("../assets/img/tdl-gif.gif") center/contain no-repeat;
  opacity: 0.8;
  filter: drop-shadow(0 0 18px rgba(0, 245, 255, 0.6));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: rotate(45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-title {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.55rem;
  line-height: 0.98;
  font-weight: 950;
}

.page-hero h1 {
  font-size: 3.28rem;
  line-height: 1.08;
}

h2,
.section-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 950;
}

h3 {
  color: var(--white);
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-lead,
.page-lead,
.section-lead {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.section-head {
  display: flex;
  margin-bottom: 34px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-head .section-lead {
  margin-bottom: 0;
}

.text-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.07);
  color: var(--white);
  font-weight: 950;
  padding: 0 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 255, 0.62);
  background: rgba(0, 245, 255, 0.12);
  box-shadow: var(--glow-cyan);
}

.btn-primary {
  border-color: rgba(0, 245, 255, 0.75);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.96), rgba(166, 255, 0, 0.92));
  color: #021124;
}

.btn-primary:hover {
  border-color: rgba(166, 255, 0, 0.86);
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.96), rgba(0, 245, 255, 0.9));
  box-shadow: var(--glow-green);
}

.btn-rose {
  border-color: rgba(255, 90, 95, 0.54);
  background: rgba(255, 90, 95, 0.12);
}

.btn-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.hero-metrics,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.metric,
.stat-card,
.info-card,
.project-card,
.news-card,
.social-card,
.donation-card,
.contact-panel,
.gallery-card,
.arena-panel,
.status-board,
.goal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric {
  position: relative;
  min-height: 110px;
  overflow: hidden;
  padding: 18px;
}

.metric::after,
.stat-card::after,
.info-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: rotate(45deg);
}

.metric-value,
.stat-value {
  display: block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.metric-label,
.stat-label {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.metric-note,
.stat-note,
.card-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.arena-panel {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  padding: 24px;
}

.arena-panel::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(0, 245, 255, 0.12);
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.12), transparent 58%);
  opacity: 0.72;
}

.arena-panel > * {
  position: relative;
  z-index: 1;
}

.arena-panel h2 {
  max-width: 540px;
}

.status-board {
  display: grid;
  gap: 12px;
  border-color: rgba(166, 255, 0, 0.18);
  padding: 16px;
}

.status-item {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-item:last-child {
  border-bottom: 0;
}

.status-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.status-value {
  color: var(--white);
  font-weight: 950;
  text-align: right;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
}

.info-card strong {
  color: var(--green);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.08);
  font-weight: 950;
}

.card-icon img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-sm) - 1px);
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 750;
}

.feature-list li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
  content: "";
}

.project-grid,
.news-grid,
.social-grid,
.donation-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card,
.news-card,
.social-card,
.donation-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-card:hover,
.news-card:hover,
.social-card:hover,
.donation-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.38);
  background: rgba(4, 18, 45, 0.94);
}

.project-media,
.news-media,
.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #061a3a;
}

.mode-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.mode-header {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 245, 255, 0.14);
  background: rgba(2, 11, 31, 0.72);
  padding: 18px 20px;
}

.mode-header span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mode-diamond {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  filter: drop-shadow(0 0 18px rgba(0, 245, 255, 0.75));
}

.room-link {
  border: 1px solid rgba(166, 255, 0, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(166, 255, 0, 0.055);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 12px;
}

.room-link strong {
  color: var(--green);
}

.project-body,
.news-body,
.social-card,
.donation-card,
.gallery-body {
  padding: 20px;
}

.project-top,
.news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 950;
  padding: 0 10px;
  white-space: nowrap;
}

.badge.active {
  border-color: rgba(166, 255, 0, 0.42);
  color: var(--green);
}

.badge.dev {
  border-color: rgba(0, 245, 255, 0.44);
  color: var(--cyan);
}

.badge.soon {
  border-color: rgba(255, 90, 95, 0.42);
  color: var(--rose);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(0, 245, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.055);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 4px 8px;
}

.news-date,
.news-category {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.news-category {
  color: var(--cyan);
}

.stats-grid {
  margin-top: 0;
}

.stat-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  padding: 22px;
}

.stat-source {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.analytics-note {
  border-left: 3px solid var(--cyan);
  background: rgba(0, 245, 255, 0.06);
  padding: 18px 20px;
}

.social-card {
  display: flex;
  min-height: 144px;
  flex-direction: column;
  justify-content: space-between;
}

.social-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 950;
}

.social-domain {
  color: var(--muted);
  font-size: 0.88rem;
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 26px;
  align-items: start;
}

.donation-layout .donation-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.donation-visual {
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid rgba(0, 245, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(2, 11, 31, 0.72);
  box-shadow: var(--shadow);
}

.donation-visual img {
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  background: #020b1f;
  object-fit: contain;
}

.donation-card {
  display: grid;
  gap: 14px;
  min-height: 280px;
  align-content: start;
}

.donation-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.donation-card-top h3 {
  margin-bottom: 0;
}

.donation-details {
  display: grid;
  gap: 10px;
}

.donation-detail {
  display: grid;
  grid-template-columns: minmax(104px, 0.45fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(0, 245, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.045);
  padding: 10px;
}

.detail-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-detail strong {
  color: var(--white);
  font-size: 0.95rem;
  word-break: break-word;
}

.copy-button {
  min-height: 32px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  padding: 0 10px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.copy-button:hover,
.copy-button.is-copied {
  border-color: rgba(166, 255, 0, 0.46);
  background: rgba(166, 255, 0, 0.12);
  color: var(--green);
}

.goal-panel {
  border-color: rgba(166, 255, 0, 0.24);
  padding: 24px;
}

.goal-diamond {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 18px rgba(0, 245, 255, 0.68));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.42fr);
  gap: 24px;
}

.contact-panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 13px 14px;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(0, 245, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.9rem;
}

.form-status[data-tone="error"] {
  color: var(--rose);
}

.form-status[data-tone="success"] {
  color: var(--green);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  border-left: 2px solid rgba(0, 245, 255, 0.38);
  padding-left: 18px;
}

.timeline-item strong {
  display: block;
  color: var(--text);
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 26px;
  align-items: center;
}

.review-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 20px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.stars {
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.meta-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.meta-grid span {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(0, 245, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.045);
  color: var(--text-soft);
  padding: 10px 12px;
}

.meta-grid strong {
  color: var(--green);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.admin-session,
body:not(.is-admin-authenticated) [data-admin-pending-reviews] {
  opacity: 0.82;
}

.admin-warning {
  border: 1px solid rgba(166, 255, 0, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(166, 255, 0, 0.06);
  color: var(--text-soft);
  padding: 10px 12px;
}

.admin-mini-form {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.admin-mini-form label {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-inline-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.admin-inline-control input {
  min-width: 0;
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 10px 12px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.staff-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
}

.staff-card strong,
.staff-card span {
  display: block;
}

.staff-card strong {
  color: var(--white);
}

.staff-card > div > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.staff-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-poster {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 35%, rgba(0, 245, 255, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(4, 18, 45, 0.92), rgba(2, 8, 20, 0.96));
  box-shadow: var(--shadow);
}

.visual-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 11, 31, 0.82));
}

.visual-poster img {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: min(72%, 320px);
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  filter: drop-shadow(0 0 18px rgba(0, 245, 255, 0.72));
}

.site-footer {
  border-top: 1px solid rgba(0, 245, 255, 0.14);
  background: rgba(2, 11, 31, 0.94);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.55fr));
  gap: 28px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  filter: drop-shadow(0 0 14px rgba(0, 245, 255, 0.58));
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 950;
}

.footer-copy,
.footer-links a,
.footer-small {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h3 {
  margin-bottom: 6px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  margin-top: 34px;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.back-to-top {
  color: var(--cyan);
  font-weight: 950;
}

.empty-state {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
