:root {
  --bg-lime-1: #fff8f1;
  --bg-lime-2: #ffd8bc;
  --bg-lime-3: #ff9d7c;
  --bg-dark: #050505;
  --bg-dark-2: #111111;
  --bg-dark-3: #231313;
  --panel: rgba(10, 10, 10, 0.94);
  --panel-soft: rgba(18, 18, 18, 0.9);
  --text: #f6f8ef;
  --muted: rgba(255, 255, 255, 0.74);
  --muted-dark: rgba(0, 0, 0, 0.66);
  --green: #bbff33;
  --green-2: #ddff81;
  --red: #ff3b30;
  --red-2: #ff6a61;
  --white: #ffffff;
  --cream: #f6f3ea;
  --line: rgba(255, 255, 255, 0.09);
  --shadow-black: 0 28px 70px rgba(0, 0, 0, 0.28);
  --shadow-green: 0 0 0 1px rgba(187, 255, 51, 0.18), 0 22px 60px rgba(61, 112, 2, 0.2);
  --shadow-red: 0 0 0 1px rgba(255, 59, 48, 0.18), 0 24px 60px rgba(255, 59, 48, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #080808;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.5), transparent 18%),
    radial-gradient(circle at 58% 30%, rgba(255, 236, 90, 0.4), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(255, 96, 67, 0.22), transparent 20%),
    radial-gradient(circle at 76% 76%, rgba(255, 164, 53, 0.18), transparent 18%),
    linear-gradient(135deg, #fff56a 0%, #ffd84f 28%, #ffb347 56%, #ff6b3d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 130px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.008) 0,
      rgba(255, 255, 255, 0.008) 1px,
      transparent 1px,
      transparent 130px
    );
  opacity: 0.22;
}

body::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 12% 78%, rgba(255, 94, 66, 0.08), transparent 18%),
    radial-gradient(circle at 88% 80%, rgba(255, 116, 66, 0.08), transparent 22%),
    radial-gradient(circle at 70% 42%, rgba(255, 180, 110, 0.05), transparent 18%);
}

body.modal-open {
  overflow: hidden;
}

body[data-theme='dark'] {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 132, 98, 0.12), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(255, 90, 72, 0.14), transparent 18%),
    radial-gradient(circle at 64% 46%, rgba(255, 190, 140, 0.08), transparent 20%),
    linear-gradient(135deg, #111216 0%, #17191f 34%, #1e1818 66%, #221414 100%);
}

body[data-theme='dark']::before {
  opacity: 0.22;
}

body[data-theme='dark']::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 12% 78%, rgba(255, 94, 66, 0.08), transparent 18%),
    radial-gradient(circle at 88% 80%, rgba(255, 116, 66, 0.08), transparent 22%),
    radial-gradient(circle at 70% 42%, rgba(255, 180, 110, 0.05), transparent 18%);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.backdrop {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.backdrop-green {
  width: 520px;
  height: 520px;
  top: 220px;
  left: -150px;
  background: rgba(255, 110, 82, 0.12);
}

.backdrop-red {
  width: 420px;
  height: 420px;
  top: 90px;
  right: -60px;
  background: rgba(255, 74, 58, 0.16);
}

.backdrop-dark {
  width: 460px;
  height: 460px;
  bottom: -170px;
  right: 14%;
  background: rgba(255, 153, 74, 0.08);
}

.topbar,
.page,
.section,
.footer,
.modal,
.toast {
  position: relative;
  z-index: 1;
}

.page,
.topbar,
.footer {
  width: min(1880px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  margin-top: 26px;
  padding: 22px 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(27, 37, 10, 0.9) 58%, rgba(42, 56, 13, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-black), 0 0 0 1px rgba(187, 255, 51, 0.08) inset;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: sticky;
  top: 12px;
  z-index: 50;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  color: #090909;
  background: linear-gradient(180deg, #fffef9, #eef5d7);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill-link {
  appearance: none;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(25, 25, 31, 1), rgba(10, 10, 12, 1));
  color: var(--white);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 18px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pill-link:hover {
  transform: translateY(-2px);
  color: var(--green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(187, 255, 51, 0.16);
}

.page {
  padding-bottom: 10px;
}

.section {
  padding: 34px 0 0;
}

.hero {
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 20px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: min(980px, 88vw);
  height: min(980px, 88vw);
  top: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 42%, transparent 68%);
  filter: blur(10px);
}

.hero::after {
  width: 680px;
  height: 140px;
  bottom: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.14), transparent 70%);
  filter: blur(18px);
}

.hero-badge,
.section-mini-title,
.shop-badge,
.feature-tag,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-badge {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.section-mini-title {
  margin-top: 24px;
  padding: 0;
  min-height: auto;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(88px, 15vw, 230px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 1000;
  color: #070707;
  text-shadow:
    0 6px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 0 34px rgba(187, 255, 51, 0.22);
}

.hero-text {
  max-width: 980px;
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.48;
  color: rgba(0, 0, 0, 0.74);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta,
.submit-btn,
.cancel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover,
.submit-btn:hover,
.cancel-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.cta-dark {
  background: linear-gradient(180deg, #0a0a0a, #000000);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(187, 255, 51, 0.08);
}

.cta-light {
  background: linear-gradient(180deg, #fffdf6, #f0efea);
  color: #090909;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.cta-red,
.submit-btn {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(255, 59, 48, 0.22);
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.94);
  color: #101010;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.wide {
  width: 100%;
}

.hero-stats {
  width: min(1040px, 100%);
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel-dark,
.footer,
.launcher-card,
.feature-card,
.social-card,
.profile-card,
.shop-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(5, 5, 5, 0.98), rgba(18, 18, 18, 0.95) 58%, rgba(33, 43, 11, 0.8));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-black);
}

.panel-dark::before,
.launcher-card::before,
.feature-card::before,
.social-card::before,
.profile-card::before,
.shop-card::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(187, 255, 51, 0.12), transparent 32%),
    radial-gradient(circle at 0 100%, rgba(255, 59, 48, 0.08), transparent 28%);
  pointer-events: none;
}

.red-line::after,
.panel-red::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(255, 59, 48, 0), rgba(255, 59, 48, 0.95), rgba(255, 59, 48, 0));
}

.panel-green {
  box-shadow: var(--shadow-black), var(--shadow-green);
}

.panel-red {
  box-shadow: var(--shadow-black), var(--shadow-red);
}

.hero-stat {
  padding: 24px 24px 28px;
  text-align: left;
}

.hero-stat span,
.launcher-card p,
.feature-card p,
.social-card p,
.profile-card p,
.shop-card p,
.footer p,
.progress-block small {
  color: var(--muted);
}

.hero-stat strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.04em;
}

.hero-stat .server-ip {
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.2;
  word-break: break-word;
}

.hero-subline {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.launcher-section,
.info-section,
.account-section {
  margin-top: 18px;
  padding: 42px 34px 34px;
  border-radius: 42px;
  position: relative;
  overflow: hidden;
}

.launcher-section::before,
.info-section::before,
.account-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.launcher-section {
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.96), rgba(17, 23, 7, 0.92) 55%, rgba(28, 38, 10, 0.92));
  border: 1px solid rgba(187, 255, 51, 0.12);
  box-shadow: var(--shadow-black), 0 0 0 1px rgba(187, 255, 51, 0.08) inset;
}

.launcher-section::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(187, 255, 51, 0.12), transparent 20%),
    radial-gradient(circle at 88% 0, rgba(255, 59, 48, 0.1), transparent 18%);
}

.info-section {
  background:
    linear-gradient(135deg, rgba(9, 9, 9, 0.95), rgba(17, 17, 17, 0.95) 50%, rgba(52, 23, 18, 0.88));
  border: 1px solid rgba(255, 59, 48, 0.12);
  box-shadow: var(--shadow-black), 0 0 0 1px rgba(255, 59, 48, 0.08) inset;
}

.info-section::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(187, 255, 51, 0.08), transparent 20%),
    radial-gradient(circle at 92% 6%, rgba(255, 59, 48, 0.14), transparent 24%);
}

.account-section {
  background:
    linear-gradient(135deg, rgba(9, 9, 9, 0.98), rgba(12, 12, 12, 0.95) 54%, rgba(22, 33, 10, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-black), 0 0 0 1px rgba(187, 255, 51, 0.09) inset;
}

.account-section::before {
  background:
    radial-gradient(circle at 0 100%, rgba(255, 59, 48, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(187, 255, 51, 0.1), transparent 22%);
}

.community-section {
  margin-top: 18px;
}

.content-section {
  margin-top: 18px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.content-grid {
  display: grid;
  gap: 18px;
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  padding: 24px;
  border-radius: 24px;
}

.content-card h3 {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-actions-inline {
  margin-top: 20px;
}

.compact-blocks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.news-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  margin-bottom: 20px;
}

.news-feature-image {
  min-height: 280px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}

.news-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-feature-body h3 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
}

.news-feature-body p,
.news-feature-body small {
  color: var(--muted);
  line-height: 1.6;
}

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

.timer-card {
  padding: 22px;
  border-radius: 24px;
  text-align: left;
}

.timer-card span {
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.timer-title {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.timer-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--green);
}

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

.gallery-card {
  min-height: 180px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 26%),
    linear-gradient(135deg, rgba(255, 84, 66, 0.08), rgba(255, 206, 92, 0.12));
}

.gallery-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
}

.gallery-card.tall {
  min-height: 260px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.gallery-filter {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery-filter.active {
  background: linear-gradient(180deg, #ff5e2b, #ff7a2e);
}

.gallery-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.88;
}

.dynamic-gallery-item {
  text-align: left;
  cursor: pointer;
}

.dynamic-gallery-item span {
  background: rgba(0,0,0,0.4);
  padding: 8px 12px;
  border-radius: 12px;
}

.gallery-lightbox.hidden {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
}

.gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-shell {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 20px));
  margin: 24px auto 0;
  padding: 16px;
  border-radius: 22px;
  background: rgba(10,10,10,0.92);
}

.gallery-lightbox-shell img {
  width: 100%;
  border-radius: 18px;
  display: block;
  max-height: 76vh;
  object-fit: cover;
}

.gallery-lightbox-shell p {
  color: #fff;
  margin: 12px 0 0;
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.support-form-card label,
.support-form-card input,
.support-form-card select {
  width: 100%;
}

.promo-apply-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.promo-apply-row input {
  width: 100%;
}

.season-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.season-banner-inner h3 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1;
}

.season-banner-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
}

.launcher-section .section-mini-title,
.info-section .section-mini-title,
.account-section .section-mini-title {
  color: rgba(255, 255, 255, 0.76);
}

.section-head h2 {
  margin: 12px 0 12px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #090909;
}

.launcher-section .section-head h2,
.info-section .section-head h2,
.account-section .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin: 0;
  max-width: 900px;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.58;
  color: rgba(0, 0, 0, 0.7);
}

.launcher-section .section-head p,
.info-section .section-head p,
.account-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.soon-card {
  isolation: isolate;
}

.soon-card > * {
  position: relative;
  z-index: 1;
}

.soon-card .soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
}

.dev-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 195%;
  height: 58px;
  overflow: hidden;
  border-radius: 999px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 59, 48, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.08);
  transform-origin: center center;
}

.dev-line-a {
  transform: translate(-50%, -50%) rotate(-18deg);
}

.dev-line-b {
  transform: translate(-50%, -50%) rotate(18deg);
}

.dev-line-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 36px;
  padding: 14px 0;
}

.dev-line-a .dev-line-marquee {
  animation: devMarqueeA 14s linear infinite;
}

.dev-line-b .dev-line-marquee {
  animation: devMarqueeB 14s linear infinite;
}

.dev-line-track {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 0.6px rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, #ffffff 0%, #fffefe 14%, #ffd7d4 30%, #ff7d74 45%, #ff3b30 56%, #ffffff 72%, #ff6a61 88%, #ffffff 100%);
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.14), 0 0 16px rgba(255, 59, 48, 0.16);
  animation: devRibbonFlow 2.2s linear infinite;
}

@keyframes devRibbonFlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 12px rgba(255, 59, 48, 0.22));
  }
  100% {
    background-position: 200% 50%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
  }
}

@keyframes devMarqueeA {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 18px));
  }
}

@keyframes devMarqueeB {
  0% {
    transform: translateX(calc(-50% - 18px));
  }
  100% {
    transform: translateX(0);
  }
}

.launcher-grid,
.info-grid,
.social-grid,
.account-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.launcher-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launcher-card {
  padding: 30px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.launcher-card h3,
.feature-card h3,
.social-card h3,
.profile-card h3,
.shop-card h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.launcher-card p {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
}

.icon-box,
.social-icon {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-box-red {
  box-shadow: inset 0 0 0 1px rgba(255, 59, 48, 0.24), 0 0 28px rgba(255, 59, 48, 0.08);
}

.icon-box svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #f7faef;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}

.chip,
.shop-badge,
.feature-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chip-green,
.feature-tag,
.shop-card.panel-green .shop-badge {
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(187, 255, 51, 0.16);
}

.chip-red,
.shop-card.red-line .shop-badge {
  color: #ff9187;
  box-shadow: inset 0 0 0 1px rgba(255, 59, 48, 0.18);
}

.progress-block {
  margin-top: auto;
}

.progress-bar {
  width: 100%;
  height: 12px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--red));
  box-shadow: 0 0 18px rgba(187, 255, 51, 0.25);
  transition: width 0.24s linear;
}

.progress-block small {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.card-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
  min-height: 280px;
}

.feature-card h3 {
  font-size: 34px;
}

.feature-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-card {
  min-height: 400px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-black), 0 0 0 1px rgba(187, 255, 51, 0.12);
}

.social-icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.social-card h3 {
  font-size: 30px;
}

.social-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.social-card span {
  margin-top: auto;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.account-grid {
  grid-template-columns: 1.16fr 0.84fr;
  align-items: start;
}

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

.cabinet-card {
  padding: 24px;
  border-radius: 28px;
}

.cabinet-card h3 {
  margin: 14px 0 16px;
  font-size: 30px;
  line-height: 1;
}

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

.mini-status-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-status-card.active {
  box-shadow: inset 0 0 0 1px rgba(187,255,51,0.14);
}

.mini-unlink-btn {
  margin-top: 10px;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,94,66,0.12);
  color: #ff9f8f;
  font-size: 12px;
  font-weight: 900;
}

.mini-status-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mini-status-mark {
  min-width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.mini-telegram { background:#27a7e7; }
.mini-google { background:#ea4335; }
.mini-yandex { background:#fc3f1d; }
.mini-github { background:#1b1b1f; }
.mini-discord { background:#5865f2; }
.mini-vk { background:#0077ff; }
.mini-max { background:#111; }

.mini-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mini-status-badge.ok {
  background: rgba(80,196,106,0.12);
  color: #79f59f;
}

.mini-status-badge.off {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
}

.mini-status-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.mini-status-card span,
.mini-status-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.notifications-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.notification-total-badge {
  min-width: 52px;
  min-height: 52px;
  padding: 8px 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff5e2b, #ff7a2e);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.notification-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.notification-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
}

.notification-tab strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
}

.notification-tab.active {
  background: linear-gradient(180deg, #ff5e2b, #ff7a2e);
}

.history-list {
  display: grid;
  gap: 12px;
}

.history-item,
.history-empty {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.history-item.unread {
  box-shadow: inset 0 0 0 1px rgba(255, 120, 72, 0.18);
}

.mini-unlink-btn.mark-read-btn {
  margin-top: 10px;
}

.history-item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.history-item span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  margin-bottom: 6px;
}

.history-item small,
.history-empty {
  color: var(--muted);
  line-height: 1.55;
}

.compact-form input {
  min-height: 56px;
}

.admin-hero-shell {
  margin-top: 18px;
}

.admin-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.admin-hero-copy {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 0 40px rgba(255, 120, 72, 0.08);
}

.admin-hero-badges {
  display: grid;
  gap: 14px;
}

.admin-kpi-card {
  padding: 20px;
  border-radius: 22px;
}

.admin-kpi-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.admin-kpi-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.admin-editor-section {
  margin-top: 18px;
}

.editor-list {
  display: grid;
  gap: 16px;
}

.editor-list.compact {
  gap: 12px;
}

.editor-card {
  padding: 18px;
  border-radius: 22px;
}

.news-editor-card,
.gallery-editor-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
}

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

.editor-remove {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,94,66,0.12);
  color: #ff8a74;
  font-weight: 800;
}

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

.editor-card textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.96);
  color: #111;
  resize: vertical;
  font: inherit;
}

.editor-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
}

.editor-preview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.admin-card-text {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.editor-preview-card.compact {
  grid-template-columns: 180px 1fr;
}

.editor-preview-image {
  min-height: 160px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.editor-preview-body strong {
  display: block;
  color: #fff;
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.editor-preview-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.upload-dropzone {
  position: relative;
  margin-bottom: 18px;
  padding: 26px 20px;
  border-radius: 22px;
  border: 2px dashed rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.upload-dropzone.dragover {
  border-color: rgba(255, 120, 72, 0.75);
  background: linear-gradient(180deg, rgba(255,120,72,0.08), rgba(255,255,255,0.03));
  transform: translateY(-2px);
}

.upload-dropzone strong {
  display: block;
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.upload-dropzone span {
  color: var(--muted);
  line-height: 1.55;
}

.upload-dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.profile-card {
  padding: 28px;
}

.profile-public-actions {
  margin-top: 14px;
}

.premium-profile-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow-black), inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 40px rgba(255, 118, 72, 0.08);
}

.premium-notifications-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.profile-hero-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,120,72,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.profile-hero-kicker {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.profile-hero-strip strong {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.profile-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.profile-meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 800;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
  color: #080808;
  background: linear-gradient(180deg, var(--green), #fff7ef 140%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24), 0 0 22px rgba(187, 255, 51, 0.16);
}

.profile-card h3 {
  font-size: 38px;
  margin-bottom: 6px;
}

.profile-card p {
  margin: 0;
  font-size: 17px;
}

.public-player-shell {
  margin-top: 18px;
  position: relative;
  overflow: hidden;
}

.public-player-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,120,72,0.06)), url('images/hero-cover.jpg') center/cover;
  opacity: 0.14;
  pointer-events: none;
}

.public-player-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.public-player-main {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

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

.profile-stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-stats span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.profile-stats strong {
  font-size: 28px;
}

.profile-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 72px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: #101010;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 18px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

input:focus,
select:focus {
  border-color: rgba(255, 59, 48, 0.36);
  box-shadow: 0 0 0 6px rgba(255, 59, 48, 0.11);
}

.profile-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.is-hidden {
  display: none !important;
}

.settings-card {
  padding: 24px;
}

.settings-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #ffb1aa;
  border: 1px solid rgba(255, 59, 48, 0.18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.settings-card h3 {
  margin: 18px 0 10px;
  font-size: 34px;
  line-height: 1;
}

.settings-card p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
}

.settings-list {
  display: grid;
  gap: 12px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.settings-row span {
  color: var(--muted);
}

.settings-row strong {
  color: var(--white);
  font-size: 18px;
}

.settings-actions {
  margin-top: 22px;
}

.donate-body {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.94), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(255, 86, 71, 0.28), transparent 20%),
    radial-gradient(circle at 72% 72%, rgba(255, 160, 60, 0.18), transparent 18%),
    linear-gradient(135deg, #faf9f6 0%, #fff7c2 24%, #d8ff78 56%, #ffb36a 100%);
}

.donate-page-shell {
  width: min(1460px, calc(100% - 48px));
  margin: 34px auto 10px;
  padding: 24px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px);
}

.donate-page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), transparent 16%),
    radial-gradient(circle at 100% 0, rgba(255, 93, 67, 0.14), transparent 26%),
    radial-gradient(circle at 0 100%, rgba(188, 255, 77, 0.12), transparent 24%);
}

.donate-access-card {
  margin-bottom: 20px;
  padding: 24px;
  border-radius: 28px;
}

.donate-access-card h3 {
  margin: 16px 0 10px;
  font-size: 34px;
  line-height: 1;
}

.donate-access-card p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.6;
}

.donate-access-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.donate-head {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.donate-head h2 {
  color: #171717;
}

.donate-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 20px 46px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.donate-layout::before {
  content: "";
  position: absolute;
  right: -110px;
  top: 18px;
  width: 360px;
  height: 520px;
  border-radius: 200px 0 0 200px;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 77, 43, 0.9), rgba(203, 30, 47, 0.94) 60%, rgba(173, 29, 140, 0.76));
  filter: saturate(1.08);
  opacity: 0.92;
}

.donate-layout::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -12px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 73, 0.68), rgba(255, 206, 73, 0) 68%);
  filter: blur(20px);
}

.donate-left-stack,
.donate-form-card {
  position: relative;
  z-index: 1;
}

.donate-left-stack {
  display: grid;
  gap: 18px;
}

.donate-block-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.04em;
}

.exchange-card,
.exchange-info-card {
  width: 100%;
  border: 0;
  text-align: left;
  border-radius: 24px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.exchange-card strong,
.exchange-info-card h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  color: #fff;
}

.exchange-card span,
.exchange-info-card p {
  display: block;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.exchange-card b {
  min-width: 148px;
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.exchange-card.active {
  transform: translateY(-2px);
  outline: 3px solid rgba(255, 255, 255, 0.55);
}

.exchange-card-red {
  background: linear-gradient(135deg, #ff2f2f, #d11b1b 62%, #ffb02e);
}

.exchange-card-blue {
  background: linear-gradient(135deg, #2c7be5, #1f5ca5 62%, #65b8ff);
}

.exchange-card-green {
  background: linear-gradient(135deg, #29b24f, #21853c 62%, #b8f35f);
}

.exchange-info-card {
  min-height: 136px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
  border: 1px solid rgba(0,0,0,0.06);
}

.exchange-info-card h3 {
  color: #141414;
}

.exchange-info-card p {
  color: rgba(0,0,0,0.58);
  max-width: 360px;
}

.exchange-car {
  width: 150px;
  height: 90px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 50%, #222 8px, transparent 9px),
    radial-gradient(circle at 75% 50%, #222 8px, transparent 9px),
    linear-gradient(180deg, rgba(255, 214, 82, 0.18), transparent 26%),
    linear-gradient(135deg, #0f1011, #31353a);
  position: relative;
}

.exchange-car::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 30px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(135deg, #40454d, #16181b);
}

.exchange-car::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
}

.donate-form-card {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255,255,255,0.7);
}

.donate-form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.form-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.donate-form-top h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #151515;
}

.donate-summary-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 80, 60, 0.12), rgba(255, 198, 86, 0.24));
  color: #201f1d;
  font-size: 13px;
  font-weight: 900;
}

.donate-form-grid {
  display: grid;
  gap: 16px;
}

.donate-form-card label {
  color: #1d1d1d;
}

.donate-form-card input,
.donate-form-card select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
}

.donate-input-wrap {
  position: relative;
}

.donate-input-wrap span {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.45);
  font-size: 14px;
  font-weight: 800;
}

.donate-bonus-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-top: 8px;
  color: rgba(0,0,0,0.52);
  font-size: 13px;
  font-weight: 800;
}

.donate-result-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 90, 64, 0.08), rgba(216, 255, 120, 0.28));
  border: 1px solid rgba(0,0,0,0.06);
}

.donate-result-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(0,0,0,0.56);
  font-size: 13px;
  font-weight: 800;
}

.donate-result-card strong {
  color: #111;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.donate-policy {
  margin: 0;
  color: rgba(0,0,0,0.52);
  font-size: 13px;
  line-height: 1.6;
}

.shop-stack {
  display: grid;
  gap: 18px;
}

.shop-card {
  padding: 24px;
}

.shop-badge {
  margin-bottom: 18px;
}

.shop-card h3 {
  font-size: 34px;
}

.shop-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.62;
}

.shop-price {
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 1000;
  color: var(--white);
}

.footer {
  margin-top: 34px;
  margin-bottom: 34px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer strong {
  color: var(--white);
  font-size: 22px;
}

.footer p {
  margin: 8px 0 0;
  max-width: 760px;
  line-height: 1.62;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-weight: 900;
}

.modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: auto;
  padding: 12px 0 24px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.auth-sheet {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 24px));
  margin: 10px auto 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  background: var(--cream);
  max-height: calc(100vh - 28px);
  max-height: calc(100dvh - 28px);
  display: flex;
  flex-direction: column;
}

.auth-sheet-head {
  padding: 22px 26px;
  background: linear-gradient(180deg, #050505, #0f0f0f);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-sheet-head h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.modal-close {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1b1b1f;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-sheet-body {
  padding: 18px 22px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.auth-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 14px;
}

.auth-tab {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #151515;
  font-weight: 900;
  font-size: 14px;
}

.auth-tab.active {
  background: #080808;
  color: var(--white);
}

.social-auth {
  margin-bottom: 18px;
}

.social-auth-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
}

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

.provider-btn {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #121212;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 800;
  position: relative;
}

.provider-soon-section {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02));
  border: 1px dashed rgba(0,0,0,0.12);
}

.provider-soon-head {
  margin-bottom: 12px;
}

.provider-soon-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 95, 43, 0.12);
  color: #b53a21;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.provider-soon-head p {
  margin: 8px 0 0;
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 1.5;
}

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

.soon-provider {
  opacity: 0.72;
  background: linear-gradient(180deg, rgba(235,235,235,0.96), rgba(214,214,214,0.92));
  color: #545454;
  border-color: rgba(0,0,0,0.08);
  filter: grayscale(0.18);
}

.soon-provider .provider-mark {
  background: linear-gradient(180deg, #7a7a7a, #5b5b5b) !important;
}

.provider-lock {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  font-size: 13px;
}

.telegram-inline-tile {
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #121212;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.telegram-login-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 900;
  color: #111111;
}

.provider-telegram-mark {
  background: #27a7e7;
}

.telegram-widget-holder {
  min-height: 48px;
}

.provider-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
}

.provider-google .provider-mark { background: #ea4335; }
.provider-telegram .provider-mark { background: #27a7e7; }
.provider-discord .provider-mark { background: #5865f2; }
.provider-vk .provider-mark { background: #0077ff; }
.provider-github .provider-mark { background: #111111; }
.provider-max .provider-mark { background: #111111; }
.provider-yandex .provider-mark { background: #fc3f1d; }

.forgot-link {
  color: #c64f2f;
  font-size: 14px;
  font-weight: 800;
}

.auth-divider {
  position: relative;
  margin-top: 14px;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.auth-divider span {
  position: relative;
  padding: 0 12px;
  background: var(--cream);
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-weight: 700;
}

.auth-lead {
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(0, 0, 0, 0.72);
}

.auth-form {
  display: none;
  grid-template-columns: 1fr;
  gap: 14px;
}

.auth-form.active {
  display: grid;
}

.auth-form label {
  font-size: 13px;
  gap: 8px;
}

.auth-form input {
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.auth-form .submit-btn,
.auth-form .cancel-btn {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 16px;
}

.auth-message {
  min-height: 24px;
  margin-top: 14px;
  color: #7b120d;
  font-size: 15px;
  font-weight: 800;
}

.payment-modal.hidden {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  overflow-y: auto;
  padding: 12px 0 24px;
}

.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.62);
  backdrop-filter: blur(8px);
}

.payment-modal-shell {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 24px));
  margin: 20px auto 0;
}
.payment-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-bottom: 12px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.payment-panel {
  padding: 34px 36px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,248,0.96));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
  max-height: calc(100vh - 72px);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.payment-summary-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.payment-summary-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
  border: 1px solid rgba(0,0,0,0.07);
}

.payment-summary-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(0,0,0,0.5);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-summary-item strong {
  color: #131313;
  font-size: 18px;
  line-height: 1.3;
  word-break: break-word;
}

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

.payment-card {
  min-height: 188px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.08);
}

.payment-card.active {
  border-color: rgba(255, 101, 51, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 101, 51, 0.12), 0 16px 28px rgba(0,0,0,0.08);
}

.payment-card strong {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.35;
}

.payment-logo {
  min-width: 110px;
  min-height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 6px;
  text-align: center;
}

.payment-logo-flat {
  background: transparent;
  border: 0;
  min-width: auto;
}

.payment-logo-svg {
  width: 108px;
  height: 74px;
  display: block;
}

.payment-continue {
  display: block;
  width: min(420px, 100%);
  margin: 28px auto 0;
  min-height: 60px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff5e2b, #ff7a2e);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 95, 41, 0.22);
}

.payment-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.payment-support-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f4, #ffffff);
  border: 1px solid rgba(255, 100, 64, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.payment-support-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.payment-support-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #29a7e7, #0a89ce);
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
  flex-shrink: 0;
}

.payment-support-head h4 {
  margin: 0 0 8px;
  color: #171717;
  font-size: 24px;
  line-height: 1;
}

.payment-support-head p {
  margin: 0;
  color: rgba(0,0,0,0.56);
  line-height: 1.55;
}

.payment-support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.payment-admin-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 90px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #101010, #1f1f1f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.payment-admin-role {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-admin-link strong {
  font-size: 22px;
  line-height: 1;
}

.payment-admin-link small {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.4;
}

.payment-support-message-wrap {
  margin-top: 16px;
}

.payment-support-label {
  display: block;
  margin-bottom: 8px;
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-support-text {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, #fff, #fcfcfc);
  color: #111;
  font: inherit;
  line-height: 1.55;
  resize: vertical;
}

.payment-support-hint {
  margin: 10px 0 0;
  color: rgba(0,0,0,0.52);
  font-size: 13px;
  line-height: 1.55;
}

.payment-copy-btn {
  margin-top: 14px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff5e2b, #ff7a2e);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.server-nick-modal.hidden {
  display: none;
}

.server-nick-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.server-nick-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(10px);
}

.server-nick-sheet {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 24px));
  margin: 10vh auto 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,243,234,0.98));
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

.server-nick-head {
  padding: 22px 24px 12px;
  background: linear-gradient(180deg, #111, #1b1b1f);
  color: #fff;
}

.server-nick-head h3 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.server-nick-head p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.55;
}

.server-nick-form {
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
}

.server-nick-form label {
  color: #151515;
}

.server-nick-form input {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

.server-nick-rules {
  display: grid;
  gap: 10px;
}

.server-nick-rule {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.82);
}

.server-nick-rule strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.server-nick-rule span {
  color: rgba(0,0,0,0.6);
  line-height: 1.5;
  font-size: 14px;
}

.server-nick-rule.allowed {
  border-color: rgba(58, 176, 82, 0.24);
  background: rgba(80, 196, 106, 0.08);
}

.server-nick-rule.allowed strong {
  color: #20823a;
}

.server-nick-rule.denied {
  border-color: rgba(255, 83, 68, 0.22);
  background: rgba(255, 99, 80, 0.08);
}

.server-nick-rule.denied strong {
  color: #b63320;
}

.server-nick-hint {
  margin-top: -4px;
  color: rgba(0,0,0,0.54);
  font-size: 14px;
  line-height: 1.55;
}

.server-nick-error {
  min-height: 22px;
  color: #b63320;
  font-size: 14px;
  font-weight: 800;
}

.server-nick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.96);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-black), 0 0 0 1px rgba(187, 255, 51, 0.08);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1400px) {
  .launcher-grid,
  .info-grid,
  .social-grid,
  .account-grid,
  .cabinet-grid,
  .donate-layout,
  .payment-grid,
  .content-grid.three,
  .timer-grid,
  .support-grid,
  .news-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: center;
  }

  .hero-stats,
  .launcher-grid,
  .info-grid,
  .social-grid,
  .account-grid,
  .cabinet-grid,
  .content-grid.three,
  .timer-grid,
  .gallery-grid-preview,
  .mini-status-grid,
  .support-grid,
  .news-feature,
  .admin-hero-grid,
  .editor-grid-two,
  .promo-apply-row,
  .editor-preview-card,
  .public-player-grid,
  .account-grid,
  .donate-layout,
  .donate-result-card,
  .compact-blocks {
    grid-template-columns: 1fr;
  }

  .season-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .launcher-card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page,
  .topbar,
  .footer {
    width: calc(100% - 20px);
  }

  .topbar {
    padding: 18px;
    border-radius: 24px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text span {
    font-size: 13px;
  }

  .pill-link {
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-badge {
    padding: 12px 18px;
    font-size: 12px;
  }

  .donate-access-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .donate-page-shell {
    width: calc(100% - 20px);
    padding: 14px;
    border-radius: 24px;
  }

  .server-nick-sheet {
    width: calc(100% - 10px);
    margin-top: 6px;
    border-radius: 22px;
  }

  .server-nick-head {
    padding: 18px 16px 12px;
  }

  .server-nick-head h3 {
    font-size: 28px;
  }

  .server-nick-form {
    padding: 14px;
  }

  .server-nick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .payment-modal {
    padding: 6px 0 12px;
  }

  .payment-modal-shell {
    width: calc(100% - 10px);
    margin-top: 6px;
  }

  .payment-panel {
    padding: 18px;
    border-radius: 22px;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .payment-summary-bar,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-card {
    min-height: 132px;
  }

  .payment-close {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .payment-continue {
    min-height: 54px;
    font-size: 20px;
  }

  .donate-layout {
    padding: 14px;
    border-radius: 24px;
  }

  .donate-layout::before,
  .donate-layout::after {
    display: none;
  }

  .exchange-card,
  .exchange-info-card,
  .donate-form-card {
    padding: 18px;
    border-radius: 20px;
  }

  .exchange-card,
  .exchange-info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .exchange-card b {
    min-width: 0;
    width: 100%;
  }

  .donate-form-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .donate-form-top h3 {
    font-size: 34px;
  }

  .exchange-car {
    width: 100%;
  }

  .dev-line {
    width: 250%;
    height: 42px;
  }

  .dev-line-marquee {
    gap: 22px;
    padding: 10px 0;
  }

  .dev-line-track {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero-text,
  .section-head p {
    font-size: 16px;
  }

  .cta,
  .submit-btn,
  .cancel-btn {
    width: 100%;
    min-height: 60px;
    font-size: 18px;
    padding: 14px 20px;
  }

  .section-head h2 {
    font-size: 48px;
  }

  .launcher-section,
  .info-section,
  .account-section,
  .content-section {
    padding: 28px 18px 18px;
    border-radius: 26px;
  }

  .launcher-card,
  .feature-card,
  .social-card,
  .profile-card,
  .shop-card,
  .footer {
    border-radius: 24px;
  }

  .card-top,
  .profile-top,
  .profile-actions,
  .form-actions,
  .settings-row {
    flex-direction: column;
    align-items: stretch;
  }

  .icon-box {
    width: 84px;
    height: 84px;
  }

  .social-card {
    min-height: auto;
  }

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

  .modal {
    padding: 6px 0 12px;
  }

  .auth-sheet {
    width: calc(100% - 10px);
    margin-top: 0;
    border-radius: 24px;
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
  }

  .auth-sheet-head {
    padding: 16px 16px 14px;
  }

  .auth-sheet-body {
    padding: 14px 14px 18px;
  }

  .provider-grid,
  .provider-soon-grid {
    grid-template-columns: 1fr;
  }

  .modal-close {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  input,
  select {
    min-height: 62px;
    border-radius: 18px;
  }

  .auth-form input {
    min-height: 52px;
  }
}
