:root {
  --bg-1: #f7eede;
  --bg-2: #e6edf7;
  --bg-3: #e1f0e6;
  --ink: #1f2a35;
  --muted: #4d5f6e;
  --card: rgba(255, 255, 255, 0.76);
  --line: rgba(31, 42, 53, 0.14);
  --gold: #b7792e;
  --gold-soft: #e9bc76;
  --teal: #137b76;
  --teal-soft: #76d5cc;
  --alive: #1b8f51;
  --dead: #b93a4e;
  --danger-bg: #fce5ea;
  --radius: 20px;
  --shadow: 0 20px 55px rgba(30, 52, 71, 0.13);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg-1: #070c13;
  --bg-2: #0c1521;
  --bg-3: #0b111a;
  --ink: #e5eef9;
  --muted: #9fb2c8;
  --card: rgba(16, 23, 34, 0.82);
  --line: rgba(170, 192, 216, 0.2);
  --gold: #c99a5c;
  --gold-soft: #e0b57c;
  --teal: #7fd4d8;
  --teal-soft: #9ef0ec;
  --alive: #5fd394;
  --dead: #ff8198;
  --danger-bg: rgba(133, 34, 58, 0.34);
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 47%, var(--bg-3) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-layer-one {
  background:
    radial-gradient(400px 400px at 10% 18%, rgba(215, 176, 113, 0.35), transparent 70%),
    radial-gradient(480px 480px at 88% 16%, rgba(76, 181, 171, 0.25), transparent 72%);
}

.bg-layer-two {
  background-image:
    linear-gradient(120deg, rgba(20, 40, 58, 0.04) 1px, transparent 1px),
    linear-gradient(30deg, rgba(20, 40, 58, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: -1;
  opacity: 0.45;
}

a {
  color: var(--teal);
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(247, 238, 222, 0.78);
  border-bottom: 1px solid rgba(34, 52, 70, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 38px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(22, 52, 70, 0.22));
}

.brand-copy {
  line-height: 1.05;
}

.brand-copy strong {
  display: block;
  font-size: 1.02rem;
  color: #1b3c56;
  font-family: "Cinzel", serif;
  letter-spacing: 0.03em;
}

.brand-copy span {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: #4f6778;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  padding: 6px 9px;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(21, 63, 93, 0.12);
  color: #113955;
  outline: none;
}

.theme-toggle {
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(17, 57, 85, 0.2);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 4px;
}

.theme-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  font-family: "Sora", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  color: #1c4562;
  background: transparent;
  cursor: pointer;
}

.theme-btn.active {
  background: #1f5477;
  color: #fff;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.lang-toggle--hero {
  display: flex;
  width: fit-content;
  margin-bottom: 12px;
}

.lang-toggle::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #285a79;
  border-bottom: 2px solid #285a79;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.lang-select {
  border: 1px solid rgba(17, 57, 85, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1c4562;
  padding: 7px 30px 7px 12px;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 57, 85, 0.12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lang-select:focus-visible {
  outline: 2px solid rgba(31, 84, 119, 0.35);
  outline-offset: 2px;
}

.panel-link {
  text-decoration: none;
  background: linear-gradient(130deg, #1f5f87 0%, #163f5c 100%);
  color: #fff;
  border: 1px solid rgba(17, 57, 85, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-link:hover,
.panel-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 57, 85, 0.3);
  outline: none;
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(183, 121, 46, 0.34);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #825220;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #0f5f66;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 57, 78, 0.25);
  border-radius: 999px;
  padding: 10px 15px;
  text-decoration: none;
  color: #143850;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(18, 59, 84, 0.2);
  outline: none;
}

.btn-primary {
  background: linear-gradient(140deg, #bf7e2d 0%, #955914 100%);
  color: #fff;
  border-color: rgba(109, 64, 20, 0.36);
}

.btn-soft {
  background: rgba(26, 128, 121, 0.1);
  border-color: rgba(26, 128, 121, 0.28);
  color: #0d6862;
}

.hero-subtext {
  color: #365064;
  font-size: 0.9rem;
}

.stat-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 13px;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.stat-card p {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #10364d;
  font-family: "Cinzel", serif;
}

.stat-card small {
  font-size: 0.72rem;
  color: #5f7280;
}

.gameservers-card {
  margin-top: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.gameservers-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.gameservers-head h3 {
  margin: 0;
  font-size: 0.98rem;
}

.gameservers-head small {
  font-size: 0.76rem;
  color: #5f7280;
}

.gameservers-list {
  display: grid;
  gap: 8px;
}

.gameserver-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.gameserver-item--main {
  background: linear-gradient(145deg, rgba(220, 240, 252, 0.82) 0%, rgba(202, 234, 227, 0.78) 100%);
  border-color: rgba(54, 123, 160, 0.32);
}

.gameserver-item--main .gameserver-name {
  color: #124d6b;
}

.gameserver-item--main .gameserver-days,
.gameserver-item--main .gameserver-uptime strong {
  color: #0f4a62;
}

.gameserver-item--main .gameserver-merge {
  background: rgba(214, 238, 249, 0.78);
  border-color: rgba(54, 123, 160, 0.26);
}

.gameserver-item--new {
  background: linear-gradient(145deg, rgba(255, 236, 218, 0.9) 0%, rgba(255, 219, 209, 0.86) 100%);
  border-color: rgba(201, 105, 66, 0.35);
}

.gameserver-item--new .gameserver-name {
  color: #8f2d16;
}

.gameserver-item--new .gameserver-days,
.gameserver-item--new .gameserver-uptime strong {
  color: #8a2b15;
}

.gameserver-item--new .gameserver-merge {
  background: rgba(255, 228, 214, 0.78);
  border-color: rgba(201, 105, 66, 0.25);
}

.gameserver-item--empty {
  grid-template-columns: 1fr;
}

.gameserver-name {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-family: "Cinzel", serif;
  color: #173851;
}

.gameserver-meta {
  margin: 0;
  font-size: 0.8rem;
  color: #4f687a;
}

.gameserver-uptime strong {
  color: #214359;
  font-weight: 600;
}

.gameserver-days {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #10364d;
}

.gameserver-days-text {
  font-size: 0.8rem;
  color: #4f687a;
}

.gameserver-merge {
  margin-top: 7px;
  padding: 7px 8px;
  border: 1px solid rgba(17, 53, 73, 0.16);
  border-radius: 11px;
  background: rgba(245, 250, 255, 0.7);
}

.gameserver-merge-route {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1f4864;
}

.gameserver-merge-meta {
  margin: 4px 0 0;
  font-size: 0.74rem;
  color: #4f687a;
}

.gameserver-merge-meta strong {
  color: #214359;
}

.hero-art {
  position: relative;
}

.hero-main-image {
  width: 100%;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(19, 55, 75, 0.22);
  box-shadow: var(--shadow);
  animation: drift 7s ease-in-out infinite;
  object-fit: cover;
  min-height: 300px;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.card-head a {
  font-size: 0.85rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(23, 84, 111, 0.24);
  margin-left: 8px;
  padding-bottom: 16px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline a {
  display: block;
  text-decoration: none;
  color: #124766;
  font-weight: 600;
}

.timeline time {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #5b6e7d;
}

.stream-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.streamer {
  text-decoration: none;
  border: 1px solid rgba(27, 143, 81, 0.2);
  background: rgba(27, 143, 81, 0.07);
  border-radius: 14px;
  padding: 12px;
  color: #0e4d37;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.streamer:hover,
.streamer:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(18, 70, 55, 0.16);
  outline: none;
}

.streamer strong {
  display: block;
}

.streamer span {
  font-size: 0.84rem;
  color: #35685d;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-row a {
  text-decoration: none;
  font-size: 0.82rem;
  border: 1px solid rgba(18, 62, 87, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  color: #143850;
  background: rgba(255, 255, 255, 0.7);
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.section-title-row p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.58);
  margin-bottom: 14px;
}

.tab {
  border: 0;
  background: transparent;
  color: #23495f;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

.tab.active {
  background: #1e4f70;
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 780px;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(35, 65, 87, 0.11);
  text-align: left;
  font-size: 0.86rem;
  white-space: nowrap;
}

thead th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #31556f;
  background: rgba(16, 53, 76, 0.07);
}

tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.4);
}

.section-split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 16px;
}

.section-split p {
  margin: 0;
  color: var(--muted);
}

.section-art {
  width: min(340px, 44vw);
  border-radius: 16px;
  border: 1px solid rgba(19, 56, 77, 0.18);
  box-shadow: var(--shadow);
}

.accordion-grid {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  background: rgba(19, 58, 80, 0.08);
  color: #173f5c;
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

details ul {
  margin: 0;
  padding: 12px 24px 16px 33px;
  color: #274760;
}

details li {
  margin-bottom: 6px;
}

details li:last-child {
  margin-bottom: 0;
}

details li.current-phase-item {
  list-style: none;
  margin-left: -12px;
}

.current-phase-chip {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(183, 121, 46, 0.5);
  background: linear-gradient(135deg, rgba(191, 126, 45, 0.22) 0%, rgba(19, 123, 118, 0.14) 100%);
  color: #21445b;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.feature-subsection {
  margin-top: 20px;
}

.feature-subsection h3 {
  font-size: 1.15rem;
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.currency-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 14px;
  box-shadow: var(--shadow);
}

.currency-grid h4 {
  font-size: 0.92rem;
}

.currency-grid p {
  margin: 0 0 8px;
  color: #416177;
  font-size: 0.85rem;
}

.currency-grid ul,
.long-list {
  margin: 0;
  padding-left: 22px;
}

.long-list li {
  margin-bottom: 6px;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.command-grid span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 11px 12px;
  font-size: 0.84rem;
}

.command-grid .cmd-key {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 6px;
  border-radius: 8px;
  border: 1px solid rgba(18, 116, 131, 0.34);
  background: rgba(18, 116, 131, 0.14);
  color: #0b6070;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.command-grid br + .cmd-key {
  margin-top: 6px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.download-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.download-card h3 {
  font-size: 1.1rem;
}

.drivers-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(21, 64, 90, 0.08);
  box-shadow: var(--shadow);
  padding: 18px;
}

.driver-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.driver-links a {
  text-decoration: none;
  border: 1px solid rgba(17, 55, 77, 0.26);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.66);
}

.promo-banner {
  border: 1px solid rgba(183, 58, 79, 0.25);
  background: linear-gradient(130deg, rgba(185, 58, 79, 0.14) 0%, rgba(183, 121, 46, 0.11) 100%);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  margin-bottom: 14px;
}

.promo-banner h3 {
  color: #8c2239;
  margin-bottom: 4px;
}

.promo-banner p {
  margin: 0;
  color: #753144;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.payment-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 245, 253, 0.84) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover,
.payment-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(18, 43, 64, 0.2);
}

.payment-card--paypal {
  border-color: rgba(0, 92, 183, 0.28);
}

.payment-card--stripe {
  border-color: rgba(83, 59, 219, 0.28);
}

.payment-brand {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.payment-brand img {
  display: block;
  width: auto;
  max-width: 126px;
  height: 32px;
}

.payment-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--ink);
}

.payment-card p {
  margin: 0;
  color: var(--muted);
}

.donate-info {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  padding: 14px;
}

.donate-info p {
  margin-bottom: 7px;
}

.donate-info p:last-child {
  margin-bottom: 0;
}

.raid-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.raid-controls input,
.raid-controls select,
.raid-controls button {
  border: 1px solid rgba(17, 53, 73, 0.25);
  border-radius: 10px;
  background: #fff;
  color: #193e58;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
}

.raid-controls input {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 9px 11px;
}

.raid-controls label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(17, 53, 73, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 8px;
  color: #244a66;
  font-size: 0.84rem;
}

.raid-controls select {
  padding: 7px 6px;
}

.raid-controls button {
  padding: 9px 12px;
  background: var(--danger-bg);
  color: #8e2740;
  cursor: pointer;
}

.raid-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.raid-summary span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  font-size: 0.8rem;
}

.raid-list {
  display: grid;
  gap: 8px;
}

.raid-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.raid-name {
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.raid-meta {
  color: #4e6779;
  font-size: 0.82rem;
}

.status-pill {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill.alive {
  background: rgba(27, 143, 81, 0.14);
  border: 1px solid rgba(27, 143, 81, 0.35);
  color: var(--alive);
}

.status-pill.dead {
  background: rgba(185, 58, 79, 0.12);
  border: 1px solid rgba(185, 58, 79, 0.28);
  color: var(--dead);
}

.status-pill.pending {
  background: rgba(201, 140, 40, 0.14);
  border: 1px solid rgba(201, 140, 40, 0.34);
  color: #98601e;
}

.raid-time {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #38546a;
  text-align: right;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.page-btn {
  border: 1px solid rgba(17, 52, 73, 0.22);
  border-radius: 10px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.8);
  color: #18405b;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
}

.page-btn.active {
  background: #19496a;
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.vote-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 22, 31, 0.72);
  z-index: 99999;
  padding: 16px;
}

.vote-modal.open {
  display: flex;
}

.vote-modal:target {
  display: flex;
}

.vote-modal__panel {
  width: min(560px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, #172c3d 0%, #1e3950 100%);
  box-shadow: 0 30px 70px rgba(7, 14, 20, 0.55);
  padding: 24px;
  position: relative;
}

.vote-modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  text-decoration: none;
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.vote-modal__title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.vote-modal__subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.vote-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vote-card {
  display: block;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vote-card:hover,
.vote-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(9, 18, 27, 0.38);
  outline: none;
}

.vote-card--hopzone {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
}

.vote-card--topl2 {
  background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
}

.vote-card__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vote-card__desc {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.73rem;
  line-height: 1.45;
}

html[data-theme="dark"] .bg-layer-one {
  background:
    radial-gradient(380px 380px at 8% 15%, rgba(36, 83, 129, 0.42), transparent 72%),
    radial-gradient(520px 520px at 92% 12%, rgba(22, 89, 111, 0.34), transparent 74%);
}

html[data-theme="dark"] .bg-layer-two {
  background-image:
    linear-gradient(120deg, rgba(129, 160, 189, 0.08) 1px, transparent 1px),
    linear-gradient(30deg, rgba(129, 160, 189, 0.08) 1px, transparent 1px);
  opacity: 0.24;
}

html[data-theme="dark"] .site-header {
  background: rgba(8, 13, 20, 0.86);
  border-bottom: 1px solid rgba(138, 163, 191, 0.26);
}

html[data-theme="dark"] .brand-copy strong {
  color: #dce7f2;
}

html[data-theme="dark"] .brand-copy span {
  color: #98aec4;
}

html[data-theme="dark"] .main-nav a {
  color: #d4e2f0;
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a:focus-visible {
  background: rgba(113, 143, 178, 0.2);
  color: #fff;
}

html[data-theme="dark"] .theme-toggle {
  border-color: rgba(143, 170, 199, 0.3);
  background: rgba(22, 31, 44, 0.82);
}

html[data-theme="dark"] .theme-btn {
  color: #bad0e5;
}

html[data-theme="dark"] .theme-btn.active {
  background: #2a77a8;
  color: #fff;
}

html[data-theme="dark"] .lang-select {
  border-color: rgba(143, 170, 199, 0.3);
  background: rgba(22, 31, 44, 0.82);
  color: #bad0e5;
  box-shadow: 0 10px 24px rgba(5, 13, 22, 0.4);
}

html[data-theme="dark"] .lang-toggle::after {
  border-right-color: #8bb4d6;
  border-bottom-color: #8bb4d6;
}

html[data-theme="dark"] .eyebrow {
  border-color: rgba(201, 154, 92, 0.45);
  color: #ddb073;
}

html[data-theme="dark"] .hero h1 span {
  color: #85d2e2;
}

html[data-theme="dark"] .hero-text,
html[data-theme="dark"] .hero-subtext {
  color: #a5b9ce;
}

html[data-theme="dark"] .stat-card p {
  color: #e2f0fb;
}

html[data-theme="dark"] .gameservers-head small,
html[data-theme="dark"] .gameserver-meta {
  color: #9fb5c9;
}

html[data-theme="dark"] .gameserver-item {
  background: rgba(18, 28, 40, 0.72);
  border-color: rgba(141, 169, 197, 0.25);
}

html[data-theme="dark"] .gameserver-item--main {
  background: linear-gradient(145deg, rgba(24, 49, 70, 0.92) 0%, rgba(19, 66, 74, 0.9) 100%);
  border-color: rgba(101, 181, 208, 0.38);
}

html[data-theme="dark"] .gameserver-item--main .gameserver-name {
  color: #bdefff;
}

html[data-theme="dark"] .gameserver-item--main .gameserver-days,
html[data-theme="dark"] .gameserver-item--main .gameserver-uptime strong {
  color: #d4f5ff;
}

html[data-theme="dark"] .gameserver-item--main .gameserver-merge {
  background: rgba(16, 41, 58, 0.86);
  border-color: rgba(101, 181, 208, 0.26);
}

html[data-theme="dark"] .gameserver-item--new {
  background: linear-gradient(145deg, rgba(71, 31, 28, 0.92) 0%, rgba(86, 42, 24, 0.9) 100%);
  border-color: rgba(245, 142, 93, 0.38);
}

html[data-theme="dark"] .gameserver-item--new .gameserver-name {
  color: #ffd9c9;
}

html[data-theme="dark"] .gameserver-item--new .gameserver-days,
html[data-theme="dark"] .gameserver-item--new .gameserver-uptime strong {
  color: #ffe5d8;
}

html[data-theme="dark"] .gameserver-item--new .gameserver-merge {
  background: rgba(58, 29, 26, 0.86);
  border-color: rgba(245, 142, 93, 0.26);
}

html[data-theme="dark"] .gameserver-name {
  color: #dceefe;
}

html[data-theme="dark"] .gameserver-uptime strong,
html[data-theme="dark"] .gameserver-days {
  color: #e2f0fb;
}

html[data-theme="dark"] .gameserver-days-text {
  color: #9fb5c9;
}

html[data-theme="dark"] .gameserver-merge {
  background: rgba(14, 23, 34, 0.86);
  border-color: rgba(141, 169, 197, 0.22);
}

html[data-theme="dark"] .gameserver-merge-route {
  color: #b5d8f3;
}

html[data-theme="dark"] .gameserver-merge-meta {
  color: #9fb5c9;
}

html[data-theme="dark"] .gameserver-merge-meta strong {
  color: #d8e9fa;
}

html[data-theme="dark"] .timeline a {
  color: #9bd8f0;
}

html[data-theme="dark"] .timeline time {
  color: #94aac0;
}

html[data-theme="dark"] .streamer {
  background: rgba(56, 132, 111, 0.16);
  border-color: rgba(95, 201, 160, 0.26);
  color: #baf3d8;
}

html[data-theme="dark"] .streamer span {
  color: #8fd7c0;
}

html[data-theme="dark"] .social-row a,
html[data-theme="dark"] .driver-links a,
html[data-theme="dark"] .vote-links a,
html[data-theme="dark"] .raid-summary span {
  background: rgba(18, 28, 40, 0.82);
  border-color: rgba(141, 169, 197, 0.25);
  color: #bbd1e7;
}

html[data-theme="dark"] .tabs {
  background: rgba(11, 19, 30, 0.9);
  border-color: rgba(136, 165, 194, 0.3);
}

html[data-theme="dark"] .tab {
  color: #b8cee3;
}

html[data-theme="dark"] .tab.active {
  background: #2a77a8;
  color: #fff;
  box-shadow: 0 8px 20px rgba(8, 24, 36, 0.42);
}

html[data-theme="dark"] .table-wrap {
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.92) 0%, rgba(14, 24, 37, 0.88) 100%);
  border-color: rgba(136, 165, 194, 0.3);
}

html[data-theme="dark"] details {
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.92) 0%, rgba(15, 25, 38, 0.88) 100%);
  border-color: rgba(136, 165, 194, 0.3);
}

html[data-theme="dark"] summary {
  background: rgba(56, 95, 132, 0.32);
  color: #e9f4ff;
  border-bottom: 1px solid rgba(136, 165, 194, 0.24);
}

html[data-theme="dark"] details ul {
  color: #c7ddee;
}

html[data-theme="dark"] details li {
  color: #c7ddee;
}

html[data-theme="dark"] details li::marker {
  color: #8fb6d3;
}

html[data-theme="dark"] #donate details {
  background: linear-gradient(165deg, rgba(14, 24, 37, 0.95) 0%, rgba(20, 34, 50, 0.92) 100%);
  border-color: rgba(164, 196, 226, 0.38);
}

html[data-theme="dark"] #donate summary {
  background: rgba(74, 119, 161, 0.36);
  color: #f2f8ff;
  border-bottom: 1px solid rgba(164, 196, 226, 0.34);
}

html[data-theme="dark"] #donate details ul,
html[data-theme="dark"] #donate details li {
  color: #d7e8f7;
}

html[data-theme="dark"] #donate details li::marker {
  color: #9bc5e6;
}

html[data-theme="dark"] .feature-subsection h3,
html[data-theme="dark"] .currency-grid h4 {
  color: #e7f3ff;
}

html[data-theme="dark"] .currency-grid article {
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.9) 0%, rgba(15, 25, 38, 0.86) 100%);
  border-color: rgba(136, 165, 194, 0.28);
}

html[data-theme="dark"] .currency-grid p,
html[data-theme="dark"] .long-list li {
  color: #bdd3e6;
}

html[data-theme="dark"] .promo-banner {
  border-color: rgba(246, 157, 182, 0.46);
  background: linear-gradient(130deg, rgba(88, 24, 43, 0.78) 0%, rgba(104, 62, 27, 0.72) 100%);
}

html[data-theme="dark"] .promo-banner h3 {
  color: #ffe6ee;
}

html[data-theme="dark"] .promo-banner p {
  color: #ffd7e4;
}

html[data-theme="dark"] .current-phase-chip {
  border-color: rgba(255, 202, 128, 0.62);
  background: linear-gradient(135deg, rgba(137, 81, 34, 0.62) 0%, rgba(24, 88, 110, 0.56) 100%);
  color: #ffedd2;
}

html[data-theme="dark"] td {
  border-bottom-color: rgba(130, 160, 189, 0.2);
}

html[data-theme="dark"] thead th {
  color: #9ec0dc;
  background: rgba(64, 106, 145, 0.3);
}

html[data-theme="dark"] tbody tr:nth-child(odd) {
  background: rgba(21, 32, 46, 0.72);
}

html[data-theme="dark"] .donate-info {
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.92) 0%, rgba(15, 25, 38, 0.88) 100%);
  border-color: rgba(136, 165, 194, 0.3);
}

html[data-theme="dark"] .payment-card {
  background: linear-gradient(165deg, rgba(12, 21, 33, 0.95) 0%, rgba(16, 28, 42, 0.92) 100%);
  border-color: rgba(149, 178, 206, 0.34);
}

html[data-theme="dark"] .payment-card:hover,
html[data-theme="dark"] .payment-card:focus-visible {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.46);
}

html[data-theme="dark"] .payment-card--paypal {
  border-color: rgba(93, 177, 255, 0.45);
}

html[data-theme="dark"] .payment-card--stripe {
  border-color: rgba(177, 158, 255, 0.45);
}

html[data-theme="dark"] .payment-card h3 {
  color: #edf6ff;
}

html[data-theme="dark"] .payment-card p {
  color: #bdd2e6;
}

html[data-theme="dark"] .donate-info p {
  color: #c4d8ec;
}

html[data-theme="dark"] .donate-info strong {
  color: #e8f2fc;
}

html[data-theme="dark"] .donate-info b {
  color: #ffd38c;
}

html[data-theme="dark"] .donate-info a {
  color: #9ad9ff;
}

html[data-theme="dark"] .command-grid .cmd-key {
  border-color: rgba(132, 196, 224, 0.42);
  background: rgba(47, 115, 145, 0.36);
  color: #bfeaff;
}

html[data-theme="dark"] .raid-controls {
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.92) 0%, rgba(14, 24, 37, 0.88) 100%);
  border-color: rgba(136, 165, 194, 0.3);
}

html[data-theme="dark"] .raid-summary span {
  background: rgba(14, 24, 37, 0.92);
  border-color: rgba(136, 165, 194, 0.3);
  color: #c8dcef;
}

html[data-theme="dark"] .raid-item {
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.9) 0%, rgba(15, 25, 38, 0.86) 100%);
  border-color: rgba(136, 165, 194, 0.28);
}

html[data-theme="dark"] .raid-meta,
html[data-theme="dark"] .raid-time {
  color: #a9c0d6;
}

html[data-theme="dark"] .page-btn {
  background: rgba(16, 27, 41, 0.92);
  border-color: rgba(136, 165, 194, 0.32);
  color: #c8dcef;
}

html[data-theme="dark"] .page-btn.active {
  background: #2a77a8;
  color: #fff;
}

html[data-theme="dark"] .raid-controls input,
html[data-theme="dark"] .raid-controls select,
html[data-theme="dark"] .raid-controls button,
html[data-theme="dark"] .raid-controls label {
  background: rgba(17, 27, 39, 0.9);
  color: #c2d7eb;
  border-color: rgba(141, 169, 197, 0.3);
}

html[data-theme="dark"] .site-footer {
  background: rgba(8, 12, 19, 0.8);
  border-top-color: rgba(143, 168, 194, 0.25);
}

html[data-theme="dark"] .legal {
  color: #95adc3;
}

html[data-theme="dark"] .vote-modal__panel {
  border-color: rgba(173, 201, 228, 0.25);
}

.site-footer {
  border-top: 1px solid rgba(19, 53, 73, 0.18);
  background: rgba(240, 247, 252, 0.55);
  margin-top: 34px;
  padding-top: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vote-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vote-links a {
  text-decoration: none;
  border: 1px solid rgba(19, 53, 73, 0.2);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.legal {
  border-top: 1px solid rgba(19, 53, 73, 0.14);
  margin-top: 18px;
  padding: 14px 0 26px;
  color: #486175;
  font-size: 0.8rem;
}

.legal p {
  margin: 4px 0;
}

.cookie-settings-link {
  border: 1px solid rgba(19, 53, 73, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: #18405b;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 10px;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(19, 53, 73, 0.24);
  border-radius: 16px;
  background: rgba(247, 238, 222, 0.96);
  box-shadow: 0 -10px 30px rgba(18, 47, 66, 0.14);
  padding: 14px;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Cinzel", serif;
}

.cookie-banner__copy p {
  margin: 0;
  color: #3c566b;
  font-size: 0.83rem;
}

.cookie-banner__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-btn {
  font-size: 0.78rem;
  padding: 8px 11px;
}

.cookie-banner__details {
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid rgba(19, 53, 73, 0.2);
  padding-top: 10px;
}

.cookie-banner__details h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.cookie-banner__details > p {
  margin: 0 0 10px;
  color: #3a556a;
  font-size: 0.86rem;
}

.cookie-option {
  border: 1px solid rgba(19, 53, 73, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  padding: 10px 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-option strong {
  display: block;
  font-size: 0.86rem;
}

.cookie-option p {
  margin: 2px 0 0;
  font-size: 0.78rem;
}

.cookie-option--toggle {
  cursor: pointer;
}

.cookie-option--toggle input {
  width: 18px;
  height: 18px;
}

.cookie-badge {
  border: 1px solid rgba(25, 92, 56, 0.35);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(25, 143, 81, 0.12);
  color: #1a7f53;
  font-size: 0.76rem;
  font-weight: 700;
}

.cookie-details__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

html[data-theme="dark"] .cookie-settings-link {
  border-color: rgba(141, 169, 197, 0.3);
  background: rgba(16, 27, 41, 0.92);
  color: #c8dcef;
}

html[data-theme="dark"] .cookie-banner__inner {
  border-color: rgba(136, 165, 194, 0.3);
  background: linear-gradient(165deg, rgba(10, 17, 27, 0.96) 0%, rgba(15, 25, 38, 0.92) 100%);
  box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.44);
}

html[data-theme="dark"] .cookie-banner__copy p {
  color: #abc0d5;
}

html[data-theme="dark"] .cookie-banner__details {
  border-top-color: rgba(136, 165, 194, 0.3);
}

html[data-theme="dark"] .cookie-banner__details > p {
  color: #abc0d5;
}

html[data-theme="dark"] .cookie-option {
  border-color: rgba(136, 165, 194, 0.28);
  background: rgba(16, 27, 41, 0.84);
}

html[data-theme="dark"] .cookie-badge {
  border-color: rgba(95, 201, 160, 0.4);
  background: rgba(56, 132, 111, 0.2);
  color: #9be1c4;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .main-nav {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-actions {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .news-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-art {
    width: 100%;
    max-width: 420px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 62px 0;
  }

  .card,
  .download-card,
  .drivers-box,
  .donate-info,
  .promo-banner {
    padding: 14px;
  }

  .raid-item {
    grid-template-columns: 1fr;
  }

  .gameserver-item {
    grid-template-columns: 1fr;
  }

  .raid-time {
    text-align: left;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .vote-modal__panel {
    padding: 18px;
  }

  .vote-modal__grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }
}
