:root {
  --ice: #72cfff;
  --ice-light: #d9f4ff;
  --ice-dark: #247ead;
  --gold: #c9aa70;
  --gold-light: #ecd39b;
  --bg: #070b12;
  --bg-soft: #0b121d;
  --card: #101a28;
  --card-light: #152235;
  --border: #20344a;
  --text: #c7d3df;
  --muted: #8193a6;
  --white: #f4f8fb;
  --green: #40d98a;
  --red: #ef5d68;
  --title: "Cinzel", serif;
  --body: "Rajdhani", sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font: 500 16px/1.6 var(--body);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

html.loader-seen body.is-loading {
  overflow: auto;
}

html.loader-seen .site-loader {
  display: none;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.logout-form {
  display: inline-flex;
  margin: 0;
}

.logout-form .btn-login {
  background: transparent;
}

button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.6);
  opacity: 0.55;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(51, 166, 231, 0.13), transparent 34%),
    #04080e;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-aura {
  position: absolute;
  width: min(480px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(114, 207, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 207, 255, 0.12), transparent 62%);
  box-shadow: 0 0 90px rgba(36, 126, 173, 0.16);
  animation: loader-aura 1.8s ease-in-out infinite;
}

.loader-logo {
  position: relative;
  width: min(330px, 72vw);
  filter: drop-shadow(0 0 28px rgba(77, 188, 255, 0.45));
  animation: loader-logo 1.35s ease-in-out infinite;
}

.site-loader span {
  position: relative;
  color: var(--ice-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--ice-dark);
}

#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(114, 207, 255, 0.14);
  background: rgba(5, 9, 15, 0.9);
  backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(5, 9, 15, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(1320px, calc(100% - 36px));
  height: 90px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 82px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(77, 188, 255, 0.26));
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(114, 207, 255, 0.65);
  background: linear-gradient(145deg, rgba(114, 207, 255, 0.24), rgba(36, 126, 173, 0.04));
  color: var(--ice-light);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  filter: drop-shadow(0 0 10px rgba(114, 207, 255, 0.35));
  font: 800 16px/1 var(--title);
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 19px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(114, 207, 255, 0.08);
  color: var(--ice-light);
}

.main-nav a.active {
  box-shadow: inset 0 -2px var(--ice);
}

.main-nav i {
  color: var(--ice);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login,
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px 19px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-login {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-login:hover {
  border-color: var(--ice);
  color: var(--ice-light);
}

.btn-register {
  border: 1px solid var(--ice-dark);
  background: linear-gradient(135deg, var(--ice-dark), var(--ice));
  color: #04101a;
}

.btn-register:hover {
  box-shadow: 0 0 20px rgba(114, 207, 255, 0.25);
  transform: translateY(-1px);
}

.user-name {
  color: var(--ice-light);
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--ice-light);
}

.hero {
  min-height: 760px;
  margin-top: 76px;
  background:
    linear-gradient(90deg, rgba(5,9,15,.60), rgba(5,9,15,.30), rgba(5,9,15,.65)),
    linear-gradient(180deg, rgba(5,9,15,.04), rgba(5,9,15,.75)),
    url("../img/hero-ice.jpg") center 32% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 42%, rgba(114, 207, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(4, 8, 13, 0.08), rgba(4, 8, 13, 0.35));
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  top: -20px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ice-light);
  box-shadow: 0 0 8px var(--ice);
  animation: snow-fall linear infinite;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: clamp(48px, 7vw, 110px);
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: clamp(330px, 39vw, 470px);
  height: auto;
  margin: 0 0 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(32, 127, 177, 0.34));
}

.section-heading > span,
.cta > .container > span,
.page-hero span {
  color: var(--ice);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content > p {
  max-width: 580px;
  color: #b9c8d6;
  font-size: 21px;
}

.hero-rates {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.rate-item {
  min-width: 92px;
  padding: 9px 14px;
  border: 1px solid rgba(114, 207, 255, 0.17);
  border-radius: 6px;
  background: rgba(8, 15, 24, 0.6);
  backdrop-filter: blur(8px);
}

.rate-item span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.rate-item strong {
  color: var(--ice-light);
  font: 700 20px/1.2 var(--title);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary {
  border: 1px solid var(--ice);
  background: linear-gradient(135deg, var(--ice-dark), var(--ice-light));
  color: #04101a;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(114, 207, 255, 0.26);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(217, 244, 255, 0.28);
  background: rgba(7, 12, 19, 0.35);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--ice);
  color: var(--ice-light);
  transform: translateY(-2px);
}

.live-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--border);
  background: var(--card);
}

.launch-countdown {
  border-bottom: 1px solid rgba(114, 207, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(21, 77, 108, 0.2), rgba(8, 15, 24, 0.9), rgba(21, 77, 108, 0.2));
}

.launch-countdown-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.launch-countdown-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.launch-countdown-heading > i {
  color: var(--ice);
  font-size: 27px;
  filter: drop-shadow(0 0 10px rgba(114, 207, 255, 0.45));
}

.launch-countdown-heading span {
  display: block;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.launch-countdown-heading strong {
  color: var(--white);
  font: 700 20px/1.3 var(--title);
}

.launch-countdown-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  gap: 20px;
}

.launch-countdown-units > div {
  min-width: 76px;
  padding: 10px 13px;
  border: 1px solid rgba(114, 207, 255, 0.2);
  border-radius: 6px;
  background: rgba(5, 11, 18, 0.7);
  text-align: center;
}

.launch-countdown-units strong,
.launch-countdown-units span {
  display: block;
}

.launch-countdown-units strong {
  color: var(--ice-light);
  font: 700 clamp(34px, 4vw, 48px)/1 var(--title);
}

.launch-countdown-units span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.live-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.live-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-content: center;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
}

.live-item:last-child {
  border-right: 0;
}

.live-item i {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--ice);
}

.live-item span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.live-item strong {
  color: var(--white);
  font: 700 21px/1.2 var(--title);
}

.is-online {
  color: var(--green) !important;
  filter: drop-shadow(0 0 6px rgba(64, 217, 138, 0.6));
}

.is-offline {
  color: var(--red) !important;
}

.section {
  padding: 92px 0;
  background: var(--bg-soft);
}

.section-dark {
  background: var(--bg);
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.cta h2 {
  margin: 8px 0 10px;
  color: var(--white);
  font: 700 clamp(30px, 4vw, 46px)/1.2 var(--title);
  letter-spacing: 1px;
}

.section-heading p,
.cta p {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.stat-card,
.rate-card,
.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--card-light), var(--card));
}

.feature-card {
  padding: 34px;
  transition: transform var(--transition), border-color var(--transition);
}

.feature-card::after,
.stat-card::after,
.rate-card::after {
  content: "";
  position: absolute;
  inset: auto 20% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}

.feature-card:hover {
  border-color: rgba(114, 207, 255, 0.45);
  transform: translateY(-5px);
}

.feature-card > i {
  margin-bottom: 20px;
  color: var(--ice);
  font-size: 29px;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 21px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

.server-overview {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  margin: -20px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
}

.check-list i {
  margin-right: 8px;
  color: var(--ice);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-grid-wide {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
}

.stat-card {
  min-height: 170px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card i {
  margin-bottom: 12px;
  color: var(--ice);
  font-size: 25px;
}

.stat-card strong {
  color: var(--white);
  font: 700 30px/1.2 var(--title);
}

.stat-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ranking-tabs {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rank-tab {
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.rank-tab:hover,
.rank-tab.active {
  border-color: var(--ice);
  background: rgba(114, 207, 255, 0.08);
  color: var(--ice-light);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.ranking-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.ranking-table th {
  padding: 16px 20px;
  background: var(--card-light);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-align: left;
  text-transform: uppercase;
}

.ranking-table td {
  padding: 15px 20px;
  border-top: 1px solid rgba(32, 52, 74, 0.72);
}

.ranking-table tbody tr {
  transition: background var(--transition);
}

.ranking-table tbody tr:hover {
  background: rgba(114, 207, 255, 0.035);
}

.ranking-table td:nth-child(2),
.ranking-table td:last-child {
  color: var(--white);
  font-weight: 700;
}

.rank-position {
  width: 29px;
  height: 29px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 700;
}

.rank-1 {
  border-color: #e6bd5f;
  color: #f2d98e;
}

.rank-2 {
  border-color: #aab7c4;
  color: #d7e0e8;
}

.rank-3 {
  border-color: #b67a49;
  color: #d8a376;
}

.section-action {
  margin-top: 28px;
  text-align: center;
}

.cta {
  min-height: 325px;
  padding: 64px 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(114, 207, 255, 0.16);
  border-bottom: 1px solid rgba(114, 207, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.92) 0%, rgba(5, 9, 15, 0.82) 58%, rgba(5, 9, 15, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 9, 15, 0.12), rgba(5, 9, 15, 0.48)),
    url("../img/cta-bg.jpg") right center / auto 100% no-repeat;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(114, 207, 255, 0.13), transparent 46%);
}

.cta .container {
  position: relative;
}

.cta .hero-buttons {
  margin-top: 28px;
  justify-content: center;
}

.page-hero {
  min-height: 320px;
  background:
    linear-gradient(
      180deg,
      rgba(4, 8, 13, 0.25) 0%,
      rgba(4, 8, 13, 0.45) 55%,
      rgba(4, 8, 13, 0.92) 100%
    ),
    url("../img/cta-bg.jpg") center top / cover no-repeat,
    #05090f;
	 background-position: center 90px;
}

.page-hero h1 {
  margin: 8px 0;
  color: var(--white);
  font: 700 clamp(32px, 5vw, 52px)/1.2 var(--title);
}

.page-hero h1 i {
  margin-right: 10px;
  color: var(--ice);
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.content-block {
  margin-top: 72px;
}

.content-block .section-heading {
  margin-bottom: 30px;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.rate-card {
  min-height: 150px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rate-card i {
  margin-bottom: 12px;
  color: var(--ice);
  font-size: 23px;
}

.rate-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rate-card strong {
  color: var(--white);
  font: 700 25px/1.4 var(--title);
}

.info-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.info-table > div {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.info-table > div:last-child {
  border-bottom: 0;
}

.info-table span {
  color: var(--muted);
}

.info-table strong {
  color: var(--white);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list > div {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.feature-list i {
  margin-right: 9px;
  color: var(--ice);
}

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

.step-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-card > span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(114, 207, 255, 0.16);
  font: 700 36px/1 var(--title);
}

.step-card > i {
  margin-bottom: 18px;
  color: var(--ice);
  font-size: 30px;
}

.step-card h2 {
  color: var(--white);
  font-size: 22px;
}

.step-card p {
  min-height: 76px;
  margin: 8px 0 22px;
  color: var(--muted);
}

.download-note {
  margin-top: 28px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(114, 207, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(114, 207, 255, 0.055);
}

.download-note > i {
  margin-top: 4px;
  color: var(--ice);
}

.download-note strong {
  color: var(--white);
}

.download-note p {
  color: var(--muted);
}

.auth-main {
  min-height: calc(100vh - 80px);
  padding: 145px 20px 70px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(4, 8, 13, 0.72), rgba(4, 8, 13, 0.96)),
    url("../img/hero-ice.jpg") right center / auto 80% fixed no-repeat;
}

.auth-card {
  width: min(460px, 100%);
  padding: 36px;
  border: 1px solid rgba(114, 207, 255, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(11, 18, 29, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.auth-card > h1 {
  margin-top: 18px;
  color: var(--white);
  font: 700 30px/1.25 var(--title);
  text-align: center;
}

.auth-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  text-align: center;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font: 800 24px/1 var(--title);
  letter-spacing: 4px;
}

.auth-brand-logo {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(77, 188, 255, 0.45));
}

.auth-form {
  display: flex;
  flex-direction: column;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.auth-form > label:not(.terms) {
  margin: 13px 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--ice-dark);
  transform: translateY(-50%);
}

.input-wrap input {
  width: 100%;
  height: 46px;
  padding: 0 15px 0 43px;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  background: var(--bg);
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-wrap input:focus {
  border-color: var(--ice-dark);
  box-shadow: 0 0 0 3px rgba(114, 207, 255, 0.07);
}

.terms {
  margin: 18px 0;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.terms input {
  margin-top: 5px;
  accent-color: var(--ice-dark);
}

.auth-submit {
  width: 100%;
}

.auth-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

.auth-footer a {
  color: var(--ice);
  font-weight: 700;
}

.alert {
  margin: 18px 0 4px;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.alert-error {
  border: 1px solid rgba(239, 93, 104, 0.35);
  background: rgba(239, 93, 104, 0.08);
  color: #ffb7bd;
}

.alert-success {
  border: 1px solid rgba(64, 217, 138, 0.35);
  background: rgba(64, 217, 138, 0.08);
  color: #a9f3cf;
}

.alert-opening {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(114, 207, 255, 0.35);
  background: rgba(36, 126, 173, 0.1);
  color: var(--muted);
  text-align: center;
}

.alert-opening i {
  color: var(--ice);
  font-size: 28px;
}

.alert-opening strong {
  color: var(--ice-light);
  font: 700 18px/1.3 var(--title);
}

.alert-opening span {
  display: block;
}

.registration-return {
  width: 100%;
  margin-top: 18px;
}

.registration-success-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

/* ── Discord Modal ── */
.discord-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: rgba(4, 8, 13, 0.75);
  backdrop-filter: blur(6px);
  padding: 20px;
  animation: discord-fade-in 0.35s ease both;
}

.discord-overlay[hidden] {
  display: none;
}

.discord-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 42px 36px 34px;
  border: 1px solid rgba(114, 207, 255, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #0d1929, #07101a);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(88, 101, 242, 0.18);
  text-align: center;
  animation: discord-slide-up 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.discord-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition), border-color var(--transition);
}

.discord-close:hover {
  border-color: var(--ice);
  color: var(--ice-light);
}

.discord-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4752c4, #5865f2);
  box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45);
  font-size: 36px;
  color: #fff;
}

.discord-modal h2 {
  margin-bottom: 10px;
  color: var(--white);
  font: 700 24px/1.2 var(--title);
}

.discord-modal p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.discord-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4752c4, #5865f2);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: box-shadow var(--transition), transform var(--transition);
}

.discord-join-btn:hover {
  box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45);
  transform: translateY(-2px);
}

.discord-dismiss {
  display: block;
  margin: 14px auto 0;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  transition: color var(--transition);
}

.discord-dismiss:hover {
  color: var(--text);
}

@keyframes discord-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes discord-slide-up {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* ── end Discord Modal ── */

/* ── Music Player ── */
.music-player {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(114, 207, 255, 0.22);
  border-radius: 50px;
  background: rgba(5, 9, 15, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transition: opacity var(--transition), transform var(--transition);
}

.music-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 207, 255, 0.35);
  border-radius: 50%;
  background: rgba(114, 207, 255, 0.1);
  color: var(--ice);
  font-size: 15px;
  transition: background var(--transition), box-shadow var(--transition);
}

.music-btn:hover {
  background: rgba(114, 207, 255, 0.2);
  box-shadow: 0 0 14px rgba(114, 207, 255, 0.3);
}

.music-btn.is-playing {
  background: rgba(114, 207, 255, 0.18);
  box-shadow: 0 0 18px rgba(114, 207, 255, 0.35);
  animation: music-pulse 2s ease-in-out infinite;
}

.music-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.music-title {
  color: var(--ice-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.music-volume {
  width: 80px;
  height: 3px;
  cursor: pointer;
  accent-color: var(--ice);
}

@keyframes music-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(114, 207, 255, 0.3); }
  50%       { box-shadow: 0 0 22px rgba(114, 207, 255, 0.6); }
}

@media (max-width: 560px) {
  .music-player {
    bottom: 14px;
    right: 14px;
    padding: 8px 10px 8px 8px;
  }

  .music-volume {
    width: 60px;
  }
}

/* ── end Music Player ── */

#footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #05080d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  min-width: 90px;
}

.footer-logo-image {
  width: 82px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(77, 188, 255, 0.24));
}

.brand-logo,
.hero-logo,
.footer-logo-image {
  transform-origin: center;
  will-change: transform;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.brand-logo:hover,
.hero-logo:hover,
.footer-logo-image:hover {
  animation: logo-shiver 0.42s ease both;
  filter: drop-shadow(0 0 22px rgba(77, 188, 255, 0.58));
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--ice);
}

.footer-inner p {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

@keyframes snow-fall {
  from {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  to {
    transform: translate3d(60px, 900px, 0);
    opacity: 0;
  }
}

@keyframes loader-logo {
  0%,
  100% {
    transform: scale(0.97);
    opacity: 0.76;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes loader-aura {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes logo-shiver {
  0% {
    transform: scale(1) translate(0);
  }
  24% {
    transform: scale(1.045) translate(-2px, 1px) rotate(-0.5deg);
  }
  48% {
    transform: scale(1.045) translate(2px, -1px) rotate(0.5deg);
  }
  72% {
    transform: scale(1.045) translate(-1px, 0) rotate(-0.25deg);
  }
  100% {
    transform: scale(1.045) translate(0);
  }
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 20px;
  }

  .main-nav a {
    padding-inline: 12px;
    font-size: 14px;
  }

  .header-actions .btn-login,
  .header-actions .btn-register {
    padding-inline: 11px;
  }

  .rates-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid-wide {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .mobile-menu-btn {
    display: grid !important;
    place-items: center;
    position: absolute;
    top: 22px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-color: rgba(114, 207, 255, 0.55);
    background: rgba(114, 207, 255, 0.08);
    font-size: 19px;
    z-index: 3;
  }

  .mobile-menu-btn::before {
    content: "\2630";
  }

  .mobile-menu-btn i {
    display: none;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  #header.menu-open .main-nav,
  #header.menu-open .header-actions {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(5, 9, 15, 0.99);
  }

  #header.menu-open .main-nav {
    top: 90px;
    padding: 15px 20px 76px;
    border-bottom: 1px solid var(--border);
  }

  #header.menu-open .main-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  #header.menu-open .main-nav a {
    justify-content: center;
  }

  #header.menu-open .header-actions {
    top: 386px;
    padding: 0 20px 16px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
  }

  #header.menu-open .header-actions .user-name {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    background-position: center, 73% center;
    background-size: cover, auto 100%;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 9, 15, 0.34);
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-logo {
    width: min(390px, 82vw);
    margin-inline: auto;
  }

  .hero-content > p {
    margin-inline: auto;
  }

  .hero-rates,
  .hero-buttons {
    justify-content: center;
  }

  .live-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .launch-countdown-inner {
    padding-block: 22px;
    flex-direction: column;
    text-align: center;
  }

  .launch-countdown-heading {
    justify-content: center;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .server-overview {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 730px;
  }

  .hero-logo {
    width: min(320px, 86vw);
    height: auto;
  }

  .hero-content > p {
    font-size: 17px;
  }

  .rate-item {
    min-width: calc(50% - 8px);
  }

  .live-grid,
  .stats-grid,
  .stats-grid-wide,
  .rates-grid,
  .feature-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .launch-countdown-units {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-countdown-units strong {
    font-size: 38px;
  }

  .live-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .stat-card {
    min-height: 145px;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo,
  .loader-aura,
  .brand-logo:hover,
  .hero-logo:hover,
  .footer-logo-image:hover {
    animation: none;
  }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.discord-widget {
    border-radius: 12px;
    overflow: hidden;
}

.discord-widget iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .discord-widget {
        max-width: 380px;
        margin: 0 auto;
    }
}  
}

/* Donate */
.donate-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 24%, rgba(36, 126, 173, 0.13), transparent 28%),
    linear-gradient(180deg, #080e17 0%, #070b12 100%);
}

.donate-hero {
  padding: 150px 0 62px;
  border-bottom: 1px solid rgba(114, 207, 255, 0.12);
  text-align: center;
  background:
    linear-gradient(rgba(5, 9, 15, 0.68), rgba(5, 9, 15, 0.9)),
    url("../img/hero-ice.jpg") center 38% / cover;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--ice);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.donate-hero h1 {
  color: var(--white);
  font: 700 clamp(36px, 5vw, 58px)/1.1 var(--title);
}

.donate-hero p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.donate-content {
  padding: 62px 0 90px;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.donate-main-column {
  display: grid;
  gap: 26px;
}

.donate-panel,
.donate-info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(11, 18, 29, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.donate-panel {
  padding: 28px;
}

.donate-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.donate-panel-heading span {
  color: var(--ice);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.donate-panel-heading h2 {
  color: var(--white);
  font: 700 24px/1.2 var(--title);
}

.donate-panel-heading > i {
  color: rgba(114, 207, 255, 0.36);
  font-size: 27px;
}

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

.donate-character-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 14px;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0a111c;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.donate-character-card:hover,
.donate-character-card.is-selected {
  border-color: var(--ice);
  background: rgba(36, 126, 173, 0.13);
  transform: translateY(-2px);
}

.donate-character-card.is-online {
  cursor: not-allowed;
  opacity: 0.62;
}

.donate-character-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donate-character-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: transparent;
  font-size: 10px;
}

.donate-character-card.is-selected .donate-character-check {
  border-color: var(--ice);
  background: var(--ice);
  color: #06101a;
}

.donate-avatar {
  grid-row: 1 / 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(114, 207, 255, 0.24);
  border-radius: 12px;
  background: rgba(114, 207, 255, 0.08);
  color: var(--ice);
  font-size: 20px;
}

.donate-character-card strong {
  padding-right: 24px;
  color: var(--white);
  font-size: 18px;
}

.donate-character-card > span:not(.donate-avatar, .donate-character-check) {
  color: var(--muted);
  font-size: 13px;
}

.donate-character-card small {
  margin-top: 7px;
  font-size: 11px;
}

.donate-character-card small i {
  margin-right: 5px;
  font-size: 7px;
}

.donate-character-card small.offline {
  color: var(--green);
}

.donate-character-card small.online {
  color: var(--red);
}

.donate-product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(114, 207, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(115deg, rgba(36, 126, 173, 0.12), rgba(10, 17, 28, 0.9));
}

.donate-product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #8a4b26, #342015);
  color: #f4cc72;
  box-shadow: inset 0 0 0 1px rgba(244, 204, 114, 0.28);
  font-size: 22px;
}

.donate-product-card h3 {
  color: var(--white);
  font-size: 19px;
}

.donate-product-card p,
.donate-product-card span {
  color: var(--muted);
  font-size: 13px;
}

.donate-product-card span strong {
  color: var(--ice);
  font-size: 19px;
}

.donate-open-button {
  min-width: 140px;
  padding: 13px 24px;
  border: 0;
  border-radius: 9px;
}

.donate-info-card {
  position: sticky;
  top: 116px;
  padding: 28px;
}

.donate-info-card > i {
  margin-bottom: 18px;
  color: var(--ice);
  font-size: 30px;
}

.donate-info-card h2 {
  color: var(--white);
  font: 700 21px/1.25 var(--title);
}

.donate-info-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.donate-info-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
}

.donate-empty {
  padding: 46px 20px;
  text-align: center;
}

.donate-empty i {
  color: var(--muted);
  font-size: 34px;
}

.donate-empty h3 {
  margin-top: 12px;
  color: var(--white);
}

.donate-empty p,
.donate-history-empty {
  color: var(--muted);
}

.donate-history {
  display: grid;
}

.donate-history article {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.donate-history article:first-child {
  padding-top: 0;
  border-top: 0;
}

.donate-history article > div {
  display: grid;
}

.donate-history article > div:last-child {
  text-align: right;
}

.donate-history strong {
  color: var(--white);
}

.donate-history span {
  color: var(--muted);
  font-size: 12px;
}

.donate-status {
  font-weight: 700;
}

.donate-status.status-delivered {
  color: var(--green);
}

.donate-status.status-failed,
.donate-status.status-checkout_failed,
.donate-status.status-cancelled {
  color: var(--red);
}

body.donate-modal-open {
  overflow: hidden;
}

.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.donate-modal[hidden] {
  display: none;
}

.donate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 11, 0.8);
  backdrop-filter: blur(7px);
}

.donate-dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 36px);
  padding: 26px;
  overflow-y: auto;
  border: 1px solid rgba(114, 207, 255, 0.28);
  border-radius: 18px;
  background: #f9fbfe;
  color: #172033;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.donate-dialog-close {
  position: absolute;
  top: 16px;
  right: 17px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #91a1b7;
  font-size: 17px;
}

.donate-dialog-step {
  display: none;
}

.donate-dialog-step.is-active {
  display: block;
}

.donate-dialog-title {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-right: 30px;
  margin-bottom: 22px;
}

.donate-dialog-title .donate-product-icon {
  flex: 0 0 52px;
}

.donate-dialog-title h2 {
  color: #141c2c;
  font: 800 21px/1.25 var(--body);
}

.donate-dialog-title p {
  color: #6d7d94;
  font-size: 13px;
}

.donate-dialog label {
  display: block;
  margin-bottom: 7px;
  color: #53647b;
  font-size: 13px;
}

.donate-number-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 2px solid #202633;
  border-radius: 11px;
  background: #fff;
  color: #111827;
  outline: none;
}

.donate-number-input:focus {
  border-color: #18a9e1;
}

.donate-range {
  width: 100%;
  margin: 14px 0 0;
  accent-color: #168cf0;
}

.donate-range-labels {
  display: flex;
  justify-content: space-between;
  color: #71829a;
  font-size: 12px;
}

.donate-summary {
  margin: 17px 0;
  padding: 16px;
  border: 1px solid #b7e1f7;
  border-radius: 12px;
  background: #edf8fe;
}

.donate-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 5px 0;
  color: #53647b;
  font-size: 14px;
}

.donate-summary strong {
  color: #172033;
}

.donate-summary .donate-bonus {
  color: #0c9c52;
}

.donate-summary hr {
  margin: 12px 0;
  border: 0;
  border-top: 1px dashed #acd8ed;
}

.donate-summary .donate-summary-total {
  align-items: center;
}

.donate-summary-total strong {
  color: #0aa7ea;
  font-size: 24px;
}

.donate-continue {
  width: 100%;
  padding: 13px 18px;
  border: 0;
  border-radius: 10px;
  background: #16a7e3;
  color: #fff;
  font-weight: 800;
}

.donate-provider-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.donate-provider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 49px;
  padding: 10px 14px;
  border: 2px solid #e0e6ef;
  border-radius: 11px;
  background: #fff;
  color: #141a25;
  font-size: 14px;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}

.donate-provider:hover,
.donate-provider.is-selected {
  border-color: #18a9e1;
  background: #eefaff;
}

.donate-provider i {
  width: 27px;
  color: #14a8df;
  font-size: 20px;
}

.donate-provider strong {
  font-size: 13px;
}

.donate-back {
  display: block;
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  color: #718096;
}

.donate-return-page {
  padding-block: 140px 70px;
}

.donate-return-card {
  max-width: 500px;
}

.donate-return-card .section-kicker {
  text-align: center;
}

.donate-alert-success {
  border-color: rgba(64, 217, 138, 0.4);
  background: rgba(64, 217, 138, 0.1);
  color: #8ff0bd;
}

.donate-alert-pending {
  border-color: rgba(114, 207, 255, 0.34);
  background: rgba(114, 207, 255, 0.08);
  color: var(--ice-light);
}

.donate-return-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(5, 9, 15, 0.4);
}

.donate-return-summary span {
  color: var(--muted);
}

.donate-return-summary strong {
  color: var(--white);
}

.donate-sandbox-actions {
  display: grid;
}

@media (max-width: 920px) {
  .donate-layout {
    grid-template-columns: 1fr;
  }

  .donate-info-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .donate-hero {
    padding-top: 126px;
  }

  .donate-panel {
    padding: 20px;
  }

  .donate-character-grid {
    grid-template-columns: 1fr;
  }

  .donate-product-card {
    grid-template-columns: auto 1fr;
  }

  .donate-open-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .donate-history article {
    flex-direction: column;
  }

  .donate-history article > div:last-child {
    text-align: left;
  }

  .donate-dialog {
    padding: 22px 18px;
  }
}
