@import url('https://fonts.googleapis.com/css2?family=Estedad:wght@400;500;600;700;800;900&family=Orbitron:wght@500;600;700;800;900&family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

:root {
  --page: #08070d;
  --page-soft: #0d0a14;
  --panel: #11101a;
  --panel-soft: #15121f;
  --text: #f7f3ff;
  --muted: #aaa3b4;
  --muted-2: #746d7d;
  --purple: #a53fff;
  --purple-light: #d05aff;
  --purple-deep: #6418af;
  --gold: #f2c968;
  --green: #55dda6;
  --border: rgba(195, 135, 255, 0.16);
  --border-strong: rgba(195, 135, 255, 0.34);
  --container: 1240px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  direction: rtl;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 50, 235, 0.11), transparent 27%),
    var(--page);
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  line-height: 1.8;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  padding-block: 105px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 82px;
  align-items: center;
  gap: 40px;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(6, 5, 10, 0.88);
  backdrop-filter: blur(18px);
}

.header-logo {
  justify-self: start;
}

.logo-lockup {
  display: flex;
  align-items: center;
  direction: ltr;
}

.logo-lockup img {
  display: block;
  width: 174px;
  filter: drop-shadow(0 10px 30px rgba(148, 40, 255, 0.28));
}

.logo-lockup--compact {
  gap: 8px;
}

.logo-lockup--compact img {
  width: 64px;
  height: 55px;
  object-fit: contain;
}

.logo-lockup--compact div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-lockup--compact strong {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.logo-lockup--compact span {
  margin-top: 7px;
  color: #c782ff;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #c2bbc9;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  content: '';
  transition: width 180ms ease;
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: white;
  background: var(--panel);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 11px 22px;
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 8px 16px;
}

.button--primary {
  border-color: rgba(222, 170, 255, 0.27);
  background: linear-gradient(135deg, #7c22cc, #b230e6);
  box-shadow: 0 14px 35px rgba(123, 37, 211, 0.28);
}

.button--outline {
  border-color: var(--border-strong);
  color: #eee7f5;
  background: rgba(11, 9, 17, 0.62);
}

.hero {
  position: relative;
  width: min(1460px, calc(100% - 28px));
  min-height: 720px;
  margin: 100px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0 0 30px 30px;
  background: #0b0910;
  box-shadow: var(--shadow);
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 8, 0.99) 0%,
      rgba(6, 5, 10, 0.95) 28%,
      rgba(7, 5, 12, 0.66) 52%,
      rgba(7, 5, 12, 0.12) 78%,
      rgba(6, 5, 10, 0.18) 100%
    ),
    linear-gradient(to top, rgba(7, 5, 10, 0.95), transparent 32%);
}

.hero__logo {
  position: absolute;
  z-index: 4;
  top: -2px;
  right: 50%;
  transform: translateX(50%);
}

.hero__logo .logo-lockup img {
  width: 220px;
}

.hero__content {
  position: relative;
  z-index: 5;
  width: 49%;
  padding: 135px 70px 170px;
}

.eyebrow,
.section-heading > span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 13px;
  color: #c17eff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5.6vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: inline-block;
  margin-inline: 10px;
  color: transparent;
  background: linear-gradient(90deg, #a239ff, #dd57ff);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: 'Segoe Script', 'Brush Script MT', cursive;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
}

.hero__content > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #bbb4c1;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero__stats {
  position: absolute;
  z-index: 7;
  right: 50px;
  bottom: 25px;
  left: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(207, 150, 255, 0.19);
  border-radius: 17px;
  background: rgba(8, 6, 13, 0.83);
  backdrop-filter: blur(16px);
}

.hero__stats article {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  color: #bb72ff;
}

.hero__stats article:last-child {
  border-left: 0;
}

.hero__stats div {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  color: white;
  font-size: 1.05rem;
}

.hero__stats span {
  color: #837c8b;
  font-size: 0.7rem;
}

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

.section-heading h2,
.rules-intro h2,
.join-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.section-heading p,
.rules-intro p,
.join-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-heading--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  text-align: right;
}

.section-heading--split p {
  max-width: 455px;
}

.section-heading--light h2 {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.benefits-grid article {
  min-height: 245px;
  border: 1px solid var(--border);
  border-radius: 19px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(166, 70, 255, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(22, 18, 32, 0.95), rgba(11, 9, 16, 0.95));
  transition:
    transform 170ms ease,
    border-color 170ms ease;
}

.benefits-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(193, 125, 255, 0.27);
  border-radius: 14px;
  color: #bd74ff;
  background: rgba(154, 57, 238, 0.1);
}

.benefits-grid h3 {
  margin: 23px 0 9px;
  font-size: 1.05rem;
}

.benefits-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.staff-section {
  padding-top: 120px;
}

.staff-groups {
  display: grid;
  gap: 32px;
}

.staff-group {
  border: 1px solid var(--border);
  border-radius: 23px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(20, 17, 29, 0.94), rgba(10, 8, 14, 0.95));
}

.staff-group__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
  color: #c982ff;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.staff-group__heading i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(186, 111, 255, 0.3), transparent);
}

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

.staff-card {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.staff-card__avatar {
  display: grid;
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(196, 127, 255, 0.25);
  border-radius: 12px;
  color: white;
  background:
    linear-gradient(145deg, rgba(172, 69, 255, 0.38), rgba(30, 23, 43, 0.72));
  font-size: 0.78rem;
  font-weight: 900;
}

.staff-card__copy {
  min-width: 0;
}

.staff-card__copy strong {
  display: block;
  overflow: hidden;
  color: white;
  font-size: 0.83rem;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.staff-card__copy span {
  display: inline-flex;
  margin-top: 3px;
  border-radius: 99px;
  padding: 2px 8px;
  color: #c58aff;
  background: rgba(161, 64, 237, 0.12);
  font-size: 0.6rem;
  font-weight: 800;
}

.staff-card__mark {
  margin-right: auto;
  color: #a75bff;
}

.members-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 25px;
  margin-top: 23px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 19px 23px;
  background: rgba(159, 65, 239, 0.055);
}

.members-summary div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.members-summary span {
  color: var(--muted);
  font-size: 0.75rem;
}

.members-summary strong {
  color: #ce8cff;
  font-size: 1.5rem;
}

.members-summary p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.events-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(134, 39, 219, 0.14), transparent 35%),
    #0b0911;
}

.events-section::before,
.gallery-section::before,
.join-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 50px 50px;
  content: '';
}

.events-inner {
  position: relative;
  z-index: 2;
}

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

.event-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #11101a;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.event-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.event-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #11101a, transparent 64%);
  content: '';
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__image span {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  border: 1px solid rgba(221, 178, 255, 0.22);
  border-radius: 99px;
  padding: 4px 10px;
  color: white;
  background: rgba(10, 8, 14, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  font-weight: 800;
}

.event-card__body {
  padding: 20px;
}

.event-card__body h3 {
  margin: 0;
  font-size: 1.06rem;
  direction: ltr;
  text-align: right;
}

.event-card__body > p {
  min-height: 57px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.77rem;
}

.event-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.event-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.event-card dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8c8494;
  font-size: 0.68rem;
}

.event-card dd {
  margin: 0;
  color: #d4c9dd;
  font-size: 0.68rem;
  text-align: left;
}

.event-card button {
  width: 100%;
  margin-top: 17px;
  border: 1px solid rgba(191, 125, 255, 0.2);
  border-radius: 10px;
  padding: 9px;
  color: #af75e0;
  background: rgba(153, 56, 226, 0.075);
  font-size: 0.7rem;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
}

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

.stats-cards article {
  min-height: 150px;
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 23px;
  color: #ac61f4;
  background:
    radial-gradient(circle at 15% 0%, rgba(158, 59, 242, 0.12), transparent 36%),
    var(--panel);
}

.stats-cards span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.72rem;
}

.stats-cards strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 1.03rem;
}

.ranking-board {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: var(--panel);
}

.ranking-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px 14px;
}

.ranking-board__header span {
  font-weight: 800;
}

.ranking-board__header small {
  color: #7b7284;
}

.ranking-board article {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 5px;
}

.ranking-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.ranking-number--1 {
  color: #201400;
  background: var(--gold);
}

.ranking-number--2 {
  color: #171717;
  background: #d6d7de;
}

.ranking-number--3 {
  background: #ac6138;
}

.ranking-board article div {
  min-width: 0;
}

.ranking-board article strong {
  display: block;
  overflow: hidden;
  color: white;
  font-size: 0.82rem;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-board article span {
  color: #8c8395;
  font-size: 0.66rem;
}

.ranking-board article small {
  color: #736b7c;
  font-size: 0.64rem;
}

.gallery-section {
  position: relative;
  background: #0a0810;
}

.gallery-section > .section {
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 15px;
}

.gallery-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: #11101a;
}

.gallery-card--large {
  grid-row: span 2;
  min-height: 585px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 11, 0.95), transparent 55%);
  content: '';
}

.gallery-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.gallery-card span {
  color: #ca82ff;
  font-size: 0.65rem;
  font-weight: 800;
}

.gallery-card h3 {
  margin: 3px 0 0;
  font-size: 1.12rem;
}

.rewards-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: 23px;
  padding: 37px;
  background:
    radial-gradient(circle at 5% 50%, rgba(164, 65, 240, 0.2), transparent 28%),
    linear-gradient(145deg, #15101f, #0c0912);
}

.rewards-panel__icon {
  display: grid;
  width: 93px;
  height: 93px;
  place-items: center;
  border: 1px solid rgba(236, 194, 100, 0.23);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(242, 201, 104, 0.075);
}

.rewards-panel span {
  color: #c985ff;
  font-size: 0.7rem;
  font-weight: 900;
}

.rewards-panel h2 {
  margin: 5px 0;
  font-size: 1.9rem;
}

.rewards-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.rules-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
}

.rules-intro {
  position: sticky;
  top: 120px;
}

.rules-intro .button {
  margin-top: 26px;
}

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

.rules-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 17px;
  background: var(--panel);
}

.rules-list article > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 11px;
  color: #c784ff;
  background: rgba(156, 59, 230, 0.12);
  font-family: monospace;
  font-weight: 900;
}

.rules-list p {
  margin: 0;
  color: #bab2c1;
  font-size: 0.79rem;
}

.join-section {
  position: relative;
  background:
    radial-gradient(circle at 70% 0%, rgba(145, 44, 224, 0.18), transparent 30%),
    #0b0911;
}

.join-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
}

.telegram-card {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: #c270ff;
  background: rgba(154, 58, 231, 0.07);
}

.telegram-card div {
  display: flex;
  flex-direction: column;
}

.telegram-card span {
  color: #8a8192;
  font-size: 0.67rem;
}

.telegram-card a {
  color: #cf8dff;
  font-weight: 900;
  direction: ltr;
  text-align: right;
}

.join-form {
  display: grid;
  gap: 15px;
  border: 1px solid var(--border);
  border-radius: 23px;
  padding: 28px;
  background: rgba(16, 13, 24, 0.88);
  box-shadow: var(--shadow);
}

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

.join-form label {
  display: grid;
  gap: 7px;
}

.join-form label > span {
  color: #c7becf;
  font-size: 0.72rem;
  font-weight: 700;
}

.join-form input,
.join-form textarea,
.join-form select {
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 10px;
  padding: 12px 13px;
  color: white;
  background: rgba(5, 4, 8, 0.55);
  transition: border-color 160ms ease;
}

.join-form input:focus,
.join-form textarea:focus,
.join-form select:focus {
  border-color: rgba(192, 115, 255, 0.48);
}

.join-form input::placeholder,
.join-form textarea::placeholder {
  color: #5f5867;
}

.join-form textarea {
  resize: vertical;
}

.join-form select option {
  color: white;
  background: #15101d;
}

.checkbox-field {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 9px !important;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  accent-color: var(--purple);
}

.submit-button {
  width: 100%;
}

.form-message {
  border: 1px solid rgba(85, 221, 166, 0.23);
  border-radius: 10px;
  padding: 10px;
  color: #a4eacb;
  background: rgba(85, 221, 166, 0.07);
  font-size: 0.7rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #07060a;
}

.footer-inner {
  display: flex;
  width: min(var(--container), calc(100% - 40px));
  min-height: 130px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #736b7b;
  font-size: 0.68rem;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a868dd;
  direction: ltr;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 9px;
    background: rgba(10, 8, 14, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav--open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-join {
    justify-self: end;
  }

  .hero__content {
    width: 60%;
    padding-right: 45px;
    padding-left: 30px;
  }

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

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

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

  .event-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .event-card__image {
    height: 100%;
    min-height: 280px;
  }

  .ranking-layout,
  .rules-layout,
  .join-layout {
    grid-template-columns: 1fr;
  }

  .rules-intro {
    position: static;
  }
}

@media (max-width: 740px) {
  .section {
    width: min(100% - 26px, var(--container));
    padding-block: 74px;
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
    padding-inline: 13px;
  }

  .main-nav {
    top: 70px;
    right: 13px;
    left: 13px;
  }

  .header-join {
    display: none;
  }

  .logo-lockup--compact div {
    display: none;
  }

  .logo-lockup--compact img {
    width: 58px;
  }

  .hero {
    width: calc(100% - 14px);
    min-height: 720px;
    margin-top: 78px;
    border-radius: 0 0 22px 22px;
  }

  .hero__background {
    object-position: 58% center;
  }

  .hero__overlay {
    background:
      linear-gradient(to top, rgba(6, 4, 9, 0.98) 0%, rgba(6, 4, 9, 0.85) 48%, rgba(6, 4, 9, 0.35) 100%);
  }

  .hero__logo {
    top: 2px;
  }

  .hero__logo .logo-lockup img {
    width: 165px;
  }

  .hero__content {
    position: absolute;
    right: 20px;
    bottom: 150px;
    left: 20px;
    width: auto;
    padding: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero h1 em {
    display: block;
    margin: 5px 0;
  }

  .hero__content > p {
    font-size: 0.83rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats article {
    min-height: 67px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .section-heading--split {
    display: block;
  }

  .benefits-grid,
  .staff-grid,
  .stats-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .members-summary {
    grid-template-columns: 1fr;
  }

  .event-card {
    display: block;
  }

  .event-card__image {
    min-height: 220px;
  }

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

  .gallery-card,
  .gallery-card--large {
    min-height: 300px;
    grid-row: auto;
  }

  .rewards-panel {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    text-align: center;
  }

  .rewards-panel__icon {
    margin-inline: auto;
  }

  .rewards-panel .button {
    justify-self: center;
  }

  .join-form {
    padding: 20px 15px;
  }

  .footer-inner {
    flex-direction: column;
    padding-block: 30px;
    text-align: center;
  }
}

/* =========================================================
   SOLBA UNIFIED ENTRY + STAFF PORTAL
   This layer keeps the original portal design and adds only
   a clean entry page and a matching staff directory.
   ========================================================= */

.main-nav a.active {
  color: #fff;
}

.main-nav a.active::after {
  width: 100%;
}

.footer-entry-link {
  color: #b96de9;
  font-size: 0.68rem;
  font-weight: 800;
}

.entry-shell {
  min-height: 100vh;
  overflow: hidden;
  direction: rtl;
  background:
    radial-gradient(circle at 12% 8%, rgba(144, 44, 217, 0.12), transparent 28%),
    #08070d;
}

.entry-header {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 max(24px, calc((100vw - 1380px) / 2));
  background: rgba(7, 6, 11, 0.94);
  backdrop-filter: blur(18px);
}

.entry-brand {
  justify-self: center;
}

.entry-brand .logo-lockup--compact img {
  width: 76px;
  height: 66px;
}

.entry-brand .logo-lockup--compact div {
  display: none;
}

.entry-telegram {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 9px 14px;
  color: #d7a4f4;
  background: rgba(18, 12, 25, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
}

.entry-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  color: #b5adbc;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.entry-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #59db92;
  box-shadow: 0 0 14px rgba(89, 219, 146, 0.8);
}

.entry-hero {
  position: relative;
  width: min(1500px, calc(100% - 32px));
  min-height: calc(100vh - 112px);
  margin: 16px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #09070e;
  box-shadow: var(--shadow);
}

.entry-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.entry-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 8, 0.98) 0%,
      rgba(6, 5, 10, 0.9) 30%,
      rgba(8, 5, 13, 0.5) 58%,
      rgba(8, 5, 13, 0.14) 100%
    ),
    linear-gradient(to top, rgba(6, 5, 10, 0.95), transparent 42%);
}

.entry-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(650px, 52%);
  min-height: calc(100vh - 112px);
  flex-direction: column;
  justify-content: center;
  padding: 70px 66px 150px;
}

.entry-hero__content > span {
  margin-bottom: 12px;
  color: #cf75ff;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.entry-hero h1 {
  display: grid;
  margin: 0;
  line-height: 0.98;
}

.entry-hero h1 small {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.entry-hero h1 em {
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, #a63cff, #df5bff);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-style: italic;
  letter-spacing: -0.06em;
}

.entry-hero h1 strong {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4.3vw, 4.5rem);
}

.entry-hero__content > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #bcb4c3;
  font-size: 0.92rem;
  line-height: 2;
}

.entry-actions {
  display: flex;
  gap: 11px;
  margin-top: 28px;
}

.entry-stats {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 28px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(9, 7, 14, 0.88);
  backdrop-filter: blur(18px);
}

.entry-stats article {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  color: #c651f0;
}

.entry-stats article:last-child {
  border-left: 0;
}

.entry-stats div {
  display: grid;
  gap: 2px;
}

.entry-stats strong {
  color: #fff;
  font-size: 1.16rem;
}

.entry-stats span {
  color: #8d8595;
  font-size: 0.63rem;
}

.entry-features {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0;
}

.entry-section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.entry-section-heading > span {
  color: #c56bf5;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.entry-section-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.entry-section-heading p {
  margin: 0;
  color: #aaa2b0;
  font-size: 0.8rem;
  line-height: 2;
}

.entry-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.entry-feature-grid article {
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(147, 45, 214, 0.11), transparent 35%),
    var(--panel);
}

.entry-feature-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(198, 101, 245, 0.27);
  border-radius: 13px;
  color: #cb65ef;
  background: rgba(146, 42, 203, 0.1);
}

.entry-feature-grid h3 {
  margin: 24px 0 8px;
  font-size: 0.92rem;
}

.entry-feature-grid p {
  margin: 0;
  color: #9d95a4;
  font-size: 0.7rem;
  line-height: 1.9;
}

.entry-footer {
  display: grid;
  min-height: 110px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px max(24px, calc((100vw - 1240px) / 2));
  color: #877f8e;
  background: #07060a;
}

.entry-footer p {
  margin: 0;
  font-size: 0.67rem;
}

.entry-footer > a {
  color: #c76bef;
  font-size: 0.69rem;
  font-weight: 800;
}

.staff-portal {
  padding-top: 98px;
}

.staff-portal-hero {
  position: relative;
  width: min(1460px, calc(100% - 28px));
  min-height: 390px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0 0 24px 24px;
  background: #0b0910;
  box-shadow: var(--shadow);
}

.staff-portal-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.staff-portal-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 5, 10, 0.2),
      rgba(6, 5, 10, 0.62) 52%,
      rgba(6, 5, 10, 0.96)
    ),
    linear-gradient(to top, rgba(6, 5, 10, 0.9), transparent);
}

.staff-portal-hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, 58%);
  margin-right: auto;
  padding: 68px 62px 48px;
}

.staff-portal-hero h1 {
  margin: 5px 0 12px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.13;
}

.staff-portal-hero h1 em {
  color: #ca4ff1;
  font-style: normal;
}

.staff-portal-hero p {
  margin: 0;
  color: #b6adbc;
  font-size: 0.82rem;
  line-height: 2;
}

.staff-portal-summary {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.staff-portal-summary article {
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 12px 14px;
  background: rgba(10, 8, 15, 0.72);
}

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

.staff-portal-summary strong {
  color: #ce5bf2;
  font-size: 1.2rem;
}

.staff-portal-summary span {
  color: #8e8695;
  font-size: 0.59rem;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.staff-role-groups {
  display: grid;
  gap: 28px;
  margin-top: 38px;
}

.staff-role-group {
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 20px;
  background: rgba(16, 13, 23, 0.86);
}

.staff-role-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.staff-role-heading i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 80, 241, 0.42));
}

.staff-role-heading i:last-child {
  background: linear-gradient(90deg, rgba(197, 80, 241, 0.42), transparent);
}

.staff-role-heading h3 {
  margin: 0;
  color: #cb5cf0;
  font-size: 0.8rem;
}

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

.staff-role-group--founder .staff-role-grid {
  max-width: 590px;
  grid-template-columns: 1fr;
  margin-inline: auto;
}

.staff-role-group--coleaders .staff-role-grid {
  grid-template-columns: repeat(5, 1fr);
}

.staff-role-group--support .staff-role-grid {
  max-width: 840px;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
}

.staff-member-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(198, 105, 245, 0.18);
  border-radius: 13px;
  padding: 12px;
  background: #0d0a13;
}

.staff-member-card--founder {
  border-color: rgba(238, 187, 59, 0.38);
  background:
    linear-gradient(135deg, rgba(144, 92, 13, 0.13), transparent 60%),
    #0d0a13;
}

.staff-member-mark {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(207, 106, 249, 0.34);
  border-radius: 13px;
  color: #f2ddff;
  background:
    radial-gradient(circle at 50% 28%, rgba(198, 75, 238, 0.28), transparent 40%),
    linear-gradient(145deg, #24122d, #0b0810);
}

.staff-member-mark::after {
  position: absolute;
  right: 12px;
  bottom: -22px;
  left: 12px;
  height: 46px;
  border-radius: 50% 50% 0 0;
  content: '';
  background: rgba(199, 75, 241, 0.16);
}

.staff-member-mark span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.staff-member-mark--founder {
  border-color: rgba(240, 189, 58, 0.42);
  color: #f6d36e;
  background:
    radial-gradient(circle at 50% 28%, rgba(219, 161, 38, 0.3), transparent 40%),
    linear-gradient(145deg, #2b2010, #0b0806);
}

.staff-member-info {
  min-width: 0;
}

.staff-member-info span,
.staff-member-info strong,
.staff-member-info small {
  display: block;
}

.staff-member-info span {
  color: #c85bec;
  font-size: 0.59rem;
  font-weight: 900;
}

.staff-member-card--founder .staff-member-info span {
  color: #efc95a;
}

.staff-member-info strong {
  overflow: hidden;
  margin-top: 3px;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.staff-member-info small {
  margin-top: 3px;
  color: #7f7786;
  font-size: 0.55rem;
}

.staff-member-icon {
  color: #c65dec;
}

.staff-member-card--founder .staff-member-icon {
  color: #efc757;
}

.staff-ranking-section {
  padding-top: 40px;
}

.staff-ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
  margin-top: 30px;
}

.staff-ranking-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--panel);
}

.staff-ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.staff-ranking-table th,
.staff-ranking-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 13px 16px;
  text-align: right;
  font-size: 0.67rem;
}

.staff-ranking-table th {
  color: #cd62ef;
  background: rgba(92, 20, 132, 0.1);
}

.staff-ranking-table td {
  color: #c4bbc9;
}

.staff-ranking-table td b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: rgba(160, 48, 209, 0.17);
}

.staff-ranking-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.staff-ranking-summary article {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  color: #c65ceb;
  background: var(--panel);
}

.staff-ranking-summary span {
  color: #89818f;
  font-size: 0.58rem;
}

.staff-ranking-summary strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.staff-join-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid var(--border);
  border-radius: 17px;
  margin-bottom: 90px;
  padding: 30px;
  background:
    linear-gradient(120deg, rgba(112, 27, 169, 0.18), rgba(16, 13, 23, 0.9));
}

.staff-join-cta span {
  color: #cb61ef;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.staff-join-cta h2 {
  margin: 5px 0;
  font-size: 1.45rem;
}

.staff-join-cta p {
  margin: 0;
  color: #958d9c;
  font-size: 0.68rem;
}

@media (max-width: 1120px) {
  .entry-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-role-group--coleaders .staff-role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .entry-header {
    grid-template-columns: 1fr auto;
  }

  .entry-status {
    display: none;
  }

  .entry-brand {
    justify-self: end;
  }

  .entry-hero__content {
    width: 100%;
    padding: 80px 32px 165px;
  }

  .entry-hero__shade {
    background:
      linear-gradient(to top, rgba(6, 5, 10, 0.97), rgba(6, 5, 10, 0.28) 72%),
      linear-gradient(90deg, rgba(6, 5, 10, 0.4), rgba(6, 5, 10, 0.76));
  }

  .entry-stats {
    right: 18px;
    left: 18px;
  }

  .staff-portal-hero__content {
    width: 100%;
    padding: 58px 34px 44px;
  }

  .staff-role-grid,
  .staff-role-group--coleaders .staff-role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-ranking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .entry-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .entry-telegram {
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .entry-brand .logo-lockup--compact img {
    width: 58px;
    height: 50px;
  }

  .entry-hero {
    width: calc(100% - 18px);
    min-height: 620px;
    margin-top: 9px;
    border-radius: 15px;
  }

  .entry-hero__content {
    min-height: 620px;
    padding: 95px 20px 250px;
  }

  .entry-hero h1 em {
    font-size: 3.7rem;
  }

  .entry-hero h1 strong {
    font-size: 2.35rem;
  }

  .entry-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .entry-stats {
    grid-template-columns: repeat(2, 1fr);
    bottom: 15px;
  }

  .entry-stats article {
    min-height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .entry-stats article:nth-child(2) {
    border-left: 0;
  }

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

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

  .staff-portal {
    padding-top: 82px;
  }

  .staff-portal-hero {
    width: calc(100% - 18px);
    min-height: 420px;
    border-radius: 0 0 16px 16px;
  }

  .staff-portal-summary {
    grid-template-columns: 1fr;
  }

  .staff-role-grid,
  .staff-role-group--coleaders .staff-role-grid,
  .staff-role-group--support .staff-role-grid {
    grid-template-columns: 1fr;
  }

  .staff-member-card {
    grid-template-columns: 66px minmax(0, 1fr) auto;
  }

  .staff-member-mark {
    width: 60px;
    height: 60px;
  }

  .staff-ranking-summary {
    grid-template-columns: 1fr;
  }

  .staff-join-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   SOLBA CINEMATIC GATE — ENTRY ONLY
   ========================================================= */

.solba-gate {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --shift-x: 0px;
  --shift-y: 0px;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  direction: rtl;
  color: #fff;
  background: #030208;
  font-family: 'Estedad', 'Vazirmatn', sans-serif;
}

.solba-gate::before,
.solba-gate::after {
  position: absolute;
  z-index: 4;
  content: '';
  pointer-events: none;
}

.solba-gate::before {
  inset: 0;
  border: 1px solid rgba(198, 73, 255, 0.14);
  box-shadow:
    inset 0 0 120px rgba(0, 0, 0, 0.86),
    inset 0 0 1px rgba(255, 255, 255, 0.16);
}

.solba-gate::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: 0.2;
  background: linear-gradient(
    transparent,
    rgba(215, 78, 255, 0.65) 42%,
    rgba(215, 78, 255, 0.65) 58%,
    transparent
  );
}

.solba-gate__loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 45%, rgba(124, 22, 191, 0.22), transparent 28%),
    #030208;
  animation: solba-loader-exit 0.72s cubic-bezier(.7, 0, .3, 1) 1.75s forwards;
}

.solba-gate__loader-mark {
  display: grid;
  justify-items: center;
  gap: 12px;
  animation: solba-loader-mark 1.25s ease both;
}

.solba-gate__loader-mark img {
  width: 126px;
  filter:
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 34px rgba(183, 50, 246, 0.28));
}

.solba-gate__loader-mark span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.52em;
}

.solba-gate__loader-track {
  width: 260px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.solba-gate__loader-track i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: right;
  background: linear-gradient(90deg, #8028d6, #e151ff);
  box-shadow: 0 0 22px rgba(209, 69, 255, 0.8);
  animation: solba-loader-line 1.55s cubic-bezier(.76, 0, .24, 1) both;
}

.solba-gate__media {
  position: absolute;
  z-index: -6;
  inset: -3%;
  overflow: hidden;
  transform: translate3d(
    calc(var(--shift-x) * -0.3),
    calc(var(--shift-y) * -0.3),
    0
  );
  transition: transform 0.35s ease-out;
}

.solba-gate__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.82) contrast(1.12) brightness(0.72);
  transform: scale(1.06);
  animation: solba-background-breathe 18s ease-in-out infinite alternate;
}

.solba-gate__media-blur {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 1, 5, 0.78), rgba(2, 1, 5, 0.14) 42%, rgba(2, 1, 5, 0.72)),
    linear-gradient(0deg, rgba(3, 2, 7, 0.98), transparent 48%, rgba(3, 2, 7, 0.55));
}

.solba-gate__vignette {
  position: absolute;
  z-index: -4;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 49%, transparent 10%, rgba(3, 2, 7, 0.16) 54%, rgba(3, 2, 7, 0.92) 100%),
    linear-gradient(90deg, rgba(34, 3, 54, 0.34), transparent 22%, transparent 78%, rgba(34, 3, 54, 0.34));
}

.solba-gate__scanlines {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.14) 4px
  );
  mix-blend-mode: overlay;
}

.solba-gate__noise {
  position: absolute;
  z-index: 3;
  inset: -50%;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 0 0.8px, transparent 1px);
  background-size: 5px 5px;
  animation: solba-noise-shift 0.25s steps(2) infinite;
}

.solba-gate__pointer-glow {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 420px at var(--pointer-x) var(--pointer-y),
    rgba(185, 48, 244, 0.14),
    transparent 68%
  );
  transition: background-position 0.12s linear;
}

.solba-gate__particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.solba-gate__particles i {
  position: absolute;
  top: var(--particle-y);
  left: var(--particle-x);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  opacity: 0;
  background: #db75ff;
  box-shadow: 0 0 14px rgba(213, 81, 255, 0.95);
  animation:
    solba-particle-drift var(--particle-duration) linear var(--particle-delay) infinite,
    solba-particle-fade 4s ease-in-out var(--particle-delay) infinite;
}

.solba-gate__header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 104px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 74px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(3, 2, 7, 0.88), transparent);
}

.solba-gate__brand {
  position: relative;
  display: grid;
  width: 132px;
  height: 94px;
  place-items: center;
  justify-self: center;
}

.solba-gate__brand::before,
.solba-gate__brand::after {
  position: absolute;
  width: 190px;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(205, 76, 255, 0.52), transparent);
}

.solba-gate__brand::before {
  top: 13px;
}

.solba-gate__brand::after {
  bottom: 13px;
}

.solba-gate__brand img {
  width: 112px;
  filter:
    drop-shadow(0 16px 25px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 26px rgba(184, 45, 239, 0.26));
  animation: solba-logo-float 5s ease-in-out infinite;
}

.solba-gate__status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.17em;
}

.solba-gate__status > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58e092;
  box-shadow: 0 0 15px rgba(88, 224, 146, 0.9);
  animation: solba-status-pulse 1.6s ease-in-out infinite;
}

.solba-gate__status span {
  color: #d2c9d8;
}

.solba-gate__status b {
  color: #58e092;
  font-size: 0.52rem;
}

.solba-gate__telegram {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  justify-self: start;
  border: 1px solid rgba(209, 92, 255, 0.34);
  border-radius: 50%;
  color: #e183ff;
  background: rgba(11, 6, 17, 0.48);
  backdrop-filter: blur(12px);
  transition: 180ms ease;
}

.solba-gate__telegram:hover {
  color: #fff;
  border-color: rgba(225, 132, 255, 0.78);
  background: rgba(142, 34, 192, 0.24);
  box-shadow: 0 0 30px rgba(188, 47, 237, 0.22);
  transform: translateY(-2px);
}

.solba-gate__content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(900px, calc(100% - 48px));
  justify-items: center;
  text-align: center;
  transform:
    translate(-50%, -47%)
    translate3d(var(--shift-x), var(--shift-y), 0);
  transition: transform 0.28s ease-out;
}

.solba-gate__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #d37bff;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.52rem, 0.8vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  opacity: 0;
  animation: solba-reveal-up 0.8s ease 2.12s forwards;
}

.solba-gate__eyebrow span {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d258ff);
}

.solba-gate__eyebrow span:last-child {
  background: linear-gradient(90deg, #d258ff, transparent);
}

.solba-gate h1 {
  display: grid;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  line-height: 0.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solba-gate h1 span,
.solba-gate h1 strong {
  display: block;
  opacity: 0;
  transform: translateY(60px) skewY(4deg);
  animation: solba-title-reveal 0.95s cubic-bezier(.2, .75, .2, 1) forwards;
}

.solba-gate h1 span {
  color: #fff;
  font-size: clamp(3.1rem, 8.2vw, 8.9rem);
  font-weight: 900;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.05),
    0 25px 55px rgba(0, 0, 0, 0.65);
  animation-delay: 2.16s;
}

.solba-gate h1 strong {
  margin-top: 0.14em;
  color: transparent;
  background:
    linear-gradient(180deg, #f3a5ff 0%, #cf55ff 36%, #8420cb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(3.8rem, 10.5vw, 11.2rem);
  font-weight: 900;
  filter: drop-shadow(0 18px 35px rgba(123, 22, 177, 0.4));
  animation-delay: 2.28s;
}

.solba-gate__content > p {
  margin: 35px 0 0;
  color: #ece7f0;
  font-size: clamp(0.86rem, 1.35vw, 1.14rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.7);
  animation: solba-reveal-up 0.8s ease 2.5s forwards;
}

.solba-gate__enter {
  position: relative;
  display: inline-flex;
  min-width: 245px;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 166, 255, 0.55);
  border-radius: 4px;
  margin-top: 35px;
  padding: 7px 8px 7px 25px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(82, 14, 125, 0.75), rgba(178, 40, 224, 0.86));
  box-shadow:
    0 18px 55px rgba(97, 14, 143, 0.36),
    inset 0 0 25px rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(22px);
  animation: solba-button-in 0.8s cubic-bezier(.2, .8, .2, 1) 2.7s forwards;
}

.solba-gate__enter::before {
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -55%;
  width: 35%;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(18deg);
  animation: solba-button-shine 4.5s ease-in-out 3.2s infinite;
}

.solba-gate__enter::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  content: '';
  pointer-events: none;
}

.solba-gate__enter > span {
  position: relative;
  z-index: 2;
}

.solba-gate__enter > i {
  position: relative;
  z-index: 2;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: #d975ff;
  background: #fff;
  font-style: normal;
  transition: 180ms ease;
}

.solba-gate__enter:hover {
  border-color: #f1c3ff;
  box-shadow:
    0 24px 70px rgba(157, 31, 213, 0.5),
    0 0 35px rgba(208, 73, 255, 0.22);
  transform: translateY(-3px);
}

.solba-gate__enter:hover > i {
  color: #fff;
  background: #d24ef4;
  transform: translateX(-3px);
}

.solba-gate__rail {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.solba-gate__rail--right {
  right: 29px;
}

.solba-gate__rail--left {
  left: 29px;
  transform: translateY(-50%) rotate(180deg);
}

.solba-gate__rail i {
  width: 1px;
  height: 80px;
  background: linear-gradient(transparent, rgba(213, 81, 255, 0.65), transparent);
}

.solba-gate__rail small {
  color: #b45bd8;
  font-size: inherit;
}

.solba-gate__footer {
  position: absolute;
  z-index: 10;
  right: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.45rem;
  letter-spacing: 0.22em;
  transform: translateX(50%);
}

.solba-gate__footer i {
  width: 35px;
  height: 1px;
  background: rgba(205, 73, 255, 0.46);
}

.solba-gate__footer b {
  color: rgba(226, 157, 255, 0.66);
  font-size: inherit;
}

@keyframes solba-loader-mark {
  from {
    opacity: 0;
    transform: scale(0.84);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes solba-loader-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes solba-loader-exit {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes solba-background-breathe {
  0% { transform: scale(1.06) translate3d(-0.4%, 0, 0); }
  100% { transform: scale(1.13) translate3d(0.6%, -0.8%, 0); }
}

@keyframes solba-noise-shift {
  0% { transform: translate3d(-1%, 0, 0); }
  50% { transform: translate3d(1%, 1%, 0); }
  100% { transform: translate3d(0, -1%, 0); }
}

@keyframes solba-particle-drift {
  from { transform: translate3d(0, 20px, 0); }
  to { transform: translate3d(25px, -120px, 0); }
}

@keyframes solba-particle-fade {
  0%, 100% { opacity: 0; }
  35%, 65% { opacity: 0.55; }
}

@keyframes solba-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes solba-status-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes solba-reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes solba-title-reveal {
  from {
    opacity: 0;
    transform: translateY(60px) skewY(4deg);
    clip-path: inset(100% 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
    clip-path: inset(0 0 0);
  }
}

@keyframes solba-button-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes solba-button-shine {
  0%, 55% { left: -55%; }
  78%, 100% { left: 125%; }
}

@media (max-width: 900px) {
  .solba-gate {
    min-height: 610px;
  }

  .solba-gate__header {
    min-height: 86px;
    padding-inline: 20px;
  }

  .solba-gate__brand {
    width: 92px;
    height: 76px;
  }

  .solba-gate__brand img {
    width: 84px;
  }

  .solba-gate__brand::before,
  .solba-gate__brand::after {
    width: 125px;
  }

  .solba-gate__status span,
  .solba-gate__status b {
    display: none;
  }

  .solba-gate__status {
    gap: 0;
  }

  .solba-gate__rail {
    display: none;
  }

  .solba-gate__content {
    transform: translate(-50%, -44%);
  }

  .solba-gate__eyebrow span {
    width: 26px;
  }

  .solba-gate__footer span,
  .solba-gate__footer i {
    display: none;
  }
}

@media (max-width: 560px) {
  .solba-gate {
    min-height: 560px;
  }

  .solba-gate__media > img {
    object-position: 59% center;
  }

  .solba-gate__header {
    padding-inline: 14px;
  }

  .solba-gate__telegram {
    width: 39px;
    height: 39px;
  }

  .solba-gate__content {
    width: calc(100% - 28px);
  }

  .solba-gate__eyebrow {
    gap: 8px;
    letter-spacing: 0.19em;
  }

  .solba-gate h1 span {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
  }

  .solba-gate h1 strong {
    font-size: clamp(3.4rem, 20vw, 5.2rem);
  }

  .solba-gate__content > p {
    margin-top: 24px;
    font-size: 0.82rem;
  }

  .solba-gate__enter {
    min-width: 220px;
    min-height: 57px;
    margin-top: 28px;
  }

  .solba-gate__footer {
    bottom: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solba-gate *,
  .solba-gate *::before,
  .solba-gate *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .solba-gate__loader {
    display: none;
  }
}

/* END SOLBA CINEMATIC GATE */

/* === SOLBA ENTRY BUTTON PREMIUM FIX === */

.solba-gate__enter {
  position: relative !important;
  display: inline-flex !important;
  width: 258px !important;
  min-width: 258px !important;
  min-height: 62px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(214, 94, 255, 0.62) !important;
  border-radius: 13px !important;
  margin-top: 35px !important;
  padding: 8px 9px 8px 22px !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      120deg,
      rgba(18, 8, 27, 0.94),
      rgba(62, 15, 88, 0.9)
    ) !important;
  box-shadow:
    0 18px 46px rgba(72, 8, 105, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 30px rgba(191, 54, 236, 0.14) !important;
  font-size: 0.83rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease !important;
}

.solba-gate__enter::before {
  position: absolute !important;
  top: -80% !important;
  bottom: -80% !important;
  left: -55% !important;
  width: 32% !important;
  content: '' !important;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.22),
      transparent
    ) !important;
  transform: rotate(17deg) !important;
  animation: solba-entry-button-sweep 4.8s ease-in-out 1.4s infinite !important;
}

.solba-gate__enter::after {
  position: absolute !important;
  inset: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.055) !important;
  border-radius: 9px !important;
  content: '' !important;
  pointer-events: none !important;
}

.solba-gate__enter > span {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  padding-right: 8px !important;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55) !important;
}

.solba-gate__enter > i {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  width: 45px !important;
  height: 45px !important;
  flex: 0 0 45px !important;
  place-items: center !important;
  border: 1px solid rgba(232, 171, 255, 0.42) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      #8c29cf,
      #c643ef
    ) !important;
  box-shadow:
    0 8px 22px rgba(134, 24, 190, 0.38),
    0 0 18px rgba(210, 74, 245, 0.22) !important;
  font-style: normal !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease !important;
}

.solba-gate__enter:hover {
  border-color: rgba(237, 164, 255, 0.92) !important;
  background:
    linear-gradient(
      120deg,
      rgba(27, 10, 38, 0.97),
      rgba(79, 18, 109, 0.94)
    ) !important;
  box-shadow:
    0 24px 58px rgba(95, 12, 137, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 38px rgba(200, 59, 241, 0.22) !important;
  transform: translateY(-3px) scale(1.015) !important;
}

.solba-gate__enter:hover > i {
  background:
    linear-gradient(
      135deg,
      #a536e0,
      #e05bff
    ) !important;
  box-shadow:
    0 10px 28px rgba(153, 30, 207, 0.48),
    0 0 25px rgba(221, 95, 255, 0.34) !important;
  transform: translateX(-3px) !important;
}

.solba-gate__enter:active {
  transform: translateY(-1px) scale(0.995) !important;
}

.solba-gate__enter:focus-visible {
  outline: 2px solid rgba(231, 151, 255, 0.95) !important;
  outline-offset: 4px !important;
}

@keyframes solba-entry-button-sweep {
  0%,
  58% {
    left: -55%;
    opacity: 0;
  }

  65% {
    opacity: 1;
  }

  82%,
  100% {
    left: 128%;
    opacity: 0;
  }
}

@media (max-width: 560px) {
  .solba-gate__enter {
    width: 232px !important;
    min-width: 232px !important;
    min-height: 58px !important;
    padding: 7px 8px 7px 17px !important;
  }

  .solba-gate__enter > i {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }
}

/* === END SOLBA ENTRY BUTTON PREMIUM FIX === */

/* =========================================================
   SOLBA SHOP-INSPIRED UNIFIED MAIN PORTAL
   ========================================================= */

.shop-portal {
  --shop-bg: #07080b;
  --shop-panel: #101116;
  --shop-panel-soft: #14151b;
  --shop-line: rgba(255, 255, 255, 0.08);
  --shop-line-strong: rgba(185, 82, 239, 0.32);
  --shop-text: #f6f7fb;
  --shop-muted: #8e919b;
  --shop-purple: #b43fe8;
  --shop-purple-bright: #d968ff;
  --shop-amber: #f3b94d;
  --shop-green: #55d88c;
  min-height: 100vh;
  color: var(--shop-text);
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 35, 177, 0.12), transparent 28%),
    radial-gradient(circle at 6% 44%, rgba(76, 28, 112, 0.08), transparent 24%),
    var(--shop-bg);
  font-family: 'Estedad', 'Vazirmatn', sans-serif;
}

.shop-portal .site-header {
  position: sticky;
  z-index: 120;
  top: 0;
  display: grid;
  min-height: 76px;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 clamp(20px, 4vw, 70px);
  background: rgba(7, 8, 11, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.shop-portal .header-logo {
  justify-self: start;
}

.shop-portal .logo-lockup--compact > img {
  width: 51px;
}

.shop-portal .logo-lockup--compact strong {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.2em;
}

.shop-portal .main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.65vw, 30px);
}

.shop-portal .main-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #b5b7bf;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-portal .main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  content: '';
  opacity: 0;
  background: linear-gradient(90deg, #7e24bd, #d657ff);
  transform: scaleX(0.15);
  transition: 180ms ease;
}

.shop-portal .main-nav a:hover,
.shop-portal .main-nav a.active {
  color: #fff;
}

.shop-portal .main-nav a:hover::after,
.shop-portal .main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.shop-portal .header-join {
  min-height: 39px;
  border-color: rgba(196, 78, 244, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(149, 43, 197, 0.08);
}

.shop-main {
  width: min(1520px, calc(100% - 44px));
  margin: 0 auto;
  padding-bottom: 70px;
}

.shop-topbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: var(--shop-muted);
}

.shop-topbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.shop-topbar strong {
  color: #dfe1e7;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.shop-topbar small {
  font-size: 0.6rem;
}

.shop-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shop-green);
  box-shadow: 0 0 14px rgba(85, 216, 140, 0.8);
  animation: shop-online-pulse 1.8s ease-in-out infinite;
}

.shop-topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a6a8b0;
  font-size: 0.61rem;
  transition: color 160ms ease;
}

.shop-topbar__links a:hover {
  color: #fff;
}

.shop-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 5vw, 90px);
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 19px;
  margin-top: 22px;
  padding: clamp(44px, 6vw, 82px);
  background: #0a0b0f;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.shop-hero__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  filter: saturate(0.8) contrast(1.14);
  transform: scale(1.03);
  animation: shop-hero-drift 20s ease-in-out infinite alternate;
}

.shop-hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.82) 45%, rgba(8, 9, 12, 0.58) 100%),
    linear-gradient(0deg, rgba(8, 9, 12, 0.88), transparent 54%);
}

.shop-hero__grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.shop-hero__content,
.shop-hero__console {
  position: relative;
  z-index: 5;
}

.shop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--shop-purple-bright);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.shop-hero h1 {
  max-width: 760px;
  margin: 19px 0 18px;
  font-size: clamp(2.8rem, 5.1vw, 5.8rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.shop-hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #f1b2ff, #c346ee 44%, #8e29d0);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  text-shadow: 0 20px 50px rgba(142, 33, 194, 0.18);
}

.shop-hero__content > p {
  max-width: 700px;
  margin: 0;
  color: #b5b6bd;
  font-size: 0.88rem;
  line-height: 2;
}

.shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.shop-primary-button,
.shop-secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 9px;
  padding: 0 20px;
  font-size: 0.72rem;
  font-weight: 900;
  transition: 180ms ease;
}

.shop-primary-button {
  border: 1px solid rgba(224, 146, 255, 0.36);
  background: linear-gradient(135deg, #7d24bd, #bc3ce2);
  box-shadow: 0 18px 40px rgba(126, 28, 177, 0.24);
}

.shop-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d7d9df;
  background: rgba(12, 13, 17, 0.72);
  backdrop-filter: blur(12px);
}

.shop-primary-button:hover,
.shop-secondary-button:hover {
  border-color: rgba(229, 168, 255, 0.65);
  transform: translateY(-3px);
}

.shop-hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.shop-hero__micro span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #858892;
  font-size: 0.58rem;
}

.shop-hero__micro svg {
  color: var(--shop-green);
}

.shop-hero__console {
  overflow: hidden;
  border: 1px solid rgba(205, 95, 251, 0.24);
  border-radius: 16px;
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(40, 17, 52, 0.76), rgba(13, 14, 18, 0.92)),
    rgba(12, 13, 17, 0.88);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.42),
    inset 0 0 45px rgba(159, 44, 211, 0.06);
  backdrop-filter: blur(18px);
}

.shop-console__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c7c9d0;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.53rem;
  letter-spacing: 0.18em;
}

.shop-console__header i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--shop-green);
  box-shadow: 0 0 14px rgba(85, 216, 140, 0.8);
}

.shop-console__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.shop-console__brand .logo-lockup > img {
  width: 105px;
}

.shop-console__brand > div:last-child {
  display: grid;
  gap: 4px;
}

.shop-console__brand strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.shop-console__brand span {
  color: var(--shop-purple-bright);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.shop-console__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.shop-console__stats article {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px;
  background: rgba(5, 6, 8, 0.4);
}

.shop-console__stats span,
.shop-console__featured span,
.shop-console__featured small {
  display: block;
  color: #777a84;
  font-size: 0.54rem;
}

.shop-console__stats strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.shop-console__featured {
  border: 1px solid rgba(243, 185, 77, 0.18);
  border-radius: 10px;
  margin-top: 10px;
  padding: 13px;
  background: rgba(143, 91, 16, 0.06);
}

.shop-console__featured strong {
  display: block;
  margin: 4px 0;
  color: var(--shop-amber);
  font-size: 0.74rem;
}

.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  margin-top: 15px;
  background: var(--shop-panel);
}

.shop-trust-grid article {
  display: flex;
  min-height: 105px;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--shop-line);
  padding: 18px;
}

.shop-trust-grid article:last-child {
  border-left: 0;
}

.shop-trust-grid article > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border: 1px solid rgba(189, 74, 239, 0.22);
  border-radius: 11px;
  color: var(--shop-purple-bright);
  background: rgba(150, 41, 202, 0.08);
}

.shop-trust-grid strong {
  display: block;
  font-size: 0.7rem;
}

.shop-trust-grid p {
  margin: 5px 0 0;
  color: var(--shop-muted);
  font-size: 0.58rem;
  line-height: 1.75;
}

.shop-section {
  padding: 78px 0;
}

.shop-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.shop-section-heading > div > span,
.shop-rules-copy > span,
.shop-join-copy > span {
  color: var(--shop-purple-bright);
  font-family: 'Orbitron', 'Estedad', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shop-section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  line-height: 1.3;
}

.shop-section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.69rem;
  line-height: 1.9;
}

.shop-section-heading--action > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d66bff;
  font-size: 0.66rem;
  font-weight: 800;
}

.shop-section-heading--action > small {
  color: var(--shop-muted);
  font-size: 0.6rem;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.shop-category-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 15px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 51, 207, 0.14), transparent 42%),
    var(--shop-panel);
  transition: 210ms ease;
}

.shop-category-card::before {
  position: absolute;
  right: -35px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: '';
}

.shop-category-card:hover {
  border-color: rgba(200, 83, 244, 0.42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.shop-category-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(204, 86, 248, 0.24);
  border-radius: 14px;
  color: var(--shop-purple-bright);
  background: rgba(146, 40, 196, 0.1);
}

.shop-category-card small {
  display: block;
  margin-top: 25px;
  color: #777a83;
  font-size: 0.56rem;
}

.shop-category-card h3 {
  margin: 7px 0 8px;
  font-size: 1rem;
}

.shop-category-card p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.63rem;
  line-height: 1.85;
}

.shop-category-card__arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  transition: 180ms ease;
}

.shop-category-card:hover .shop-category-card__arrow {
  color: #fff;
  background: var(--shop-purple);
  transform: translateX(-4px);
}

.shop-category-card--ranking .shop-category-card__icon {
  color: var(--shop-amber);
  border-color: rgba(243, 185, 77, 0.22);
  background: rgba(149, 99, 18, 0.08);
}

.shop-category-card--gallery .shop-category-card__icon {
  color: #54c6e7;
  border-color: rgba(84, 198, 231, 0.22);
  background: rgba(33, 124, 154, 0.08);
}

.shop-benefits-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.shop-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.shop-benefit-grid article {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 15px;
  padding: 22px;
  background: linear-gradient(155deg, #13141a, #0e0f13);
}

.shop-benefit-number {
  position: absolute;
  top: 15px;
  left: 16px;
  color: rgba(255, 255, 255, 0.08);
  font-family: 'Orbitron', sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
}

.shop-benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 11px;
  color: var(--shop-purple-bright);
  background: rgba(152, 40, 202, 0.1);
}

.shop-benefit-grid h3 {
  margin: 28px 0 7px;
  font-size: 0.88rem;
}

.shop-benefit-grid p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.62rem;
  line-height: 1.85;
}

.shop-staff-preview {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

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

.shop-staff-grid article {
  position: relative;
  display: grid;
  min-height: 112px;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 13px;
  padding: 13px;
  background: var(--shop-panel);
}

.shop-staff-grid article.is-founder {
  border-color: rgba(243, 185, 77, 0.28);
  background:
    linear-gradient(120deg, rgba(149, 98, 14, 0.1), transparent 45%),
    var(--shop-panel);
}

.shop-member-emblem {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(202, 82, 246, 0.26);
  border-radius: 13px;
  color: #e89cff;
  background:
    radial-gradient(circle at 50% 30%, rgba(197, 79, 245, 0.23), transparent 55%),
    #17101d;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
}

.shop-member-emblem i {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
}

.is-founder .shop-member-emblem {
  border-color: rgba(243, 185, 77, 0.34);
  color: var(--shop-amber);
  background:
    radial-gradient(circle at 50% 30%, rgba(243, 185, 77, 0.2), transparent 55%),
    #19140d;
}

.shop-member-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.shop-member-copy small {
  color: var(--shop-purple-bright);
  font-size: 0.55rem;
  font-weight: 800;
}

.is-founder .shop-member-copy small {
  color: var(--shop-amber);
}

.shop-member-copy strong {
  overflow: hidden;
  font-size: 0.75rem;
  text-overflow: ellipsis;
}

.shop-member-copy span {
  color: #737680;
  font-size: 0.52rem;
}

.shop-member-role {
  color: #8f929b;
}

.is-founder .shop-member-role {
  color: var(--shop-amber);
}

.shop-events-section,
.shop-gallery-section,
.shop-join-section {
  position: relative;
  margin-inline: calc((100vw - min(1520px, calc(100vw - 44px))) / -2);
  padding-inline: calc((100vw - min(1520px, calc(100vw - 44px))) / 2);
  background:
    radial-gradient(circle at 88% 30%, rgba(128, 33, 174, 0.11), transparent 26%),
    #0a0b0f;
}

.shop-events-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.shop-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.shop-filter-tabs button {
  min-height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  padding: 0 12px;
  color: #8c8f98;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.58rem;
  cursor: pointer;
}

.shop-filter-tabs button.active {
  border-color: rgba(206, 84, 250, 0.36);
  color: #fff;
  background: rgba(165, 45, 214, 0.13);
}

.shop-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.shop-event-card {
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 15px;
  background: #111217;
  transition: 210ms ease;
}

.shop-event-card:hover {
  border-color: rgba(201, 83, 245, 0.4);
  transform: translateY(-5px);
}

.shop-event-card__visual {
  position: relative;
  display: flex;
  height: 160px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-event-card__visual::before,
.shop-event-card__visual::after {
  position: absolute;
  border-radius: 50%;
  content: '';
}

.shop-event-card__visual::before {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-event-card__visual::after {
  width: 115px;
  height: 115px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: shop-event-spin 22s linear infinite;
}

.shop-event-card__visual--violet {
  color: #dd76ff;
  background:
    radial-gradient(circle, rgba(176, 47, 226, 0.27), transparent 48%),
    linear-gradient(135deg, #211129, #100d16);
}

.shop-event-card__visual--amber {
  color: #f4bf58;
  background:
    radial-gradient(circle, rgba(195, 123, 25, 0.25), transparent 48%),
    linear-gradient(135deg, #261d10, #100e0b);
}

.shop-event-card__visual--cyan {
  color: #62cbe6;
  background:
    radial-gradient(circle, rgba(41, 150, 184, 0.23), transparent 48%),
    linear-gradient(135deg, #10232a, #0d1014);
}

.shop-event-card__symbol {
  position: relative;
  z-index: 2;
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 19px;
  background: rgba(8, 8, 11, 0.4);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.shop-event-card__visual > small {
  position: absolute;
  right: 13px;
  bottom: 11px;
  border-radius: 99px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(7, 8, 11, 0.62);
  font-size: 0.54rem;
}

.shop-event-card__visual > b {
  position: absolute;
  top: 8px;
  left: 14px;
  color: rgba(255, 255, 255, 0.12);
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
}

.shop-event-card__body {
  padding: 18px;
}

.shop-event-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--shop-green);
  font-size: 0.52rem;
}

.shop-event-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shop-green);
  box-shadow: 0 0 10px rgba(85, 216, 140, 0.6);
}

.shop-event-card h3 {
  margin: 10px 0 7px;
  font-size: 0.93rem;
}

.shop-event-card p {
  min-height: 48px;
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.61rem;
  line-height: 1.8;
}

.shop-event-card dl {
  display: grid;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 14px 0 0;
  padding-top: 12px;
}

.shop-event-card dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-event-card dt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #777a83;
  font-size: 0.54rem;
}

.shop-event-card dd {
  margin: 0;
  color: #c9cbd1;
  font-size: 0.55rem;
  text-align: left;
}

.shop-event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 12px;
  padding-top: 12px;
  color: var(--shop-purple-bright);
  font-size: 0.57rem;
  font-weight: 800;
}

.shop-ranking-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.shop-ranking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

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

.shop-stat-grid article {
  display: grid;
  min-height: 155px;
  align-content: center;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(144, 43, 191, 0.11), transparent 48%),
    var(--shop-panel);
}

.shop-stat-grid article > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 9px;
  color: var(--shop-purple-bright);
  background: rgba(150, 40, 201, 0.1);
}

.shop-stat-grid small {
  margin-top: 20px;
  color: #777a83;
  font-size: 0.56rem;
}

.shop-stat-grid strong {
  margin-top: 5px;
  color: #fff;
  font-size: 1.35rem;
}

.shop-leaderboard {
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  background: var(--shop-panel);
}

.shop-leaderboard > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--shop-line);
  padding: 17px 18px;
  color: var(--shop-amber);
  background: linear-gradient(90deg, rgba(143, 93, 14, 0.08), transparent);
}

.shop-leaderboard header span {
  color: var(--shop-amber);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}

.shop-leaderboard header h3 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 0.88rem;
}

.shop-leaderboard > div > article {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 12px 17px;
}

.shop-leaderboard > div > article:last-child {
  border-bottom: 0;
}

.shop-rank-position {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: #c9cbd2;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
}

.shop-rank-position.rank-1 {
  color: #1b1304;
  background: var(--shop-amber);
}

.shop-rank-position.rank-2 {
  color: #16171a;
  background: #cfd1d7;
}

.shop-rank-position.rank-3 {
  color: #1d0f08;
  background: #b96b3f;
}

.shop-leaderboard article > div {
  display: grid;
  gap: 2px;
}

.shop-leaderboard article strong {
  font-size: 0.67rem;
}

.shop-leaderboard article small {
  color: #777a83;
  font-size: 0.52rem;
}

.shop-leaderboard article > b {
  color: var(--shop-purple-bright);
  font-size: 0.68rem;
}

.shop-gallery-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 350px;
  gap: 11px;
}

.shop-gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  background: #111217;
}

.shop-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transition: 400ms ease;
}

.shop-gallery-card:hover img {
  transform: scale(1.055);
}

.shop-gallery-card::after {
  position: absolute;
  inset: 40% 0 0;
  content: '';
  background: linear-gradient(transparent, rgba(6, 7, 10, 0.96));
}

.shop-gallery-card > div {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 17px;
  left: 19px;
}

.shop-gallery-card span {
  display: block;
  color: var(--shop-purple-bright);
  font-size: 0.54rem;
  font-weight: 800;
}

.shop-gallery-card h3 {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

.shop-gallery-card > i {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.63rem;
  font-style: normal;
}

.shop-rules-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  border: 1px solid var(--shop-line);
  border-radius: 17px;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 0% 0%, rgba(129, 35, 176, 0.14), transparent 35%),
    var(--shop-panel);
}

.shop-rules-copy h2,
.shop-join-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 3.1vw, 3.2rem);
  line-height: 1.3;
}

.shop-rules-copy p,
.shop-join-copy p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.68rem;
  line-height: 1.95;
}

.shop-rules-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--shop-purple-bright);
  font-size: 0.64rem;
  font-weight: 800;
}

.shop-rules-list {
  display: grid;
  gap: 8px;
}

.shop-rules-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 11px;
  background: rgba(7, 8, 11, 0.42);
}

.shop-rules-list article > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 9px;
  color: var(--shop-purple-bright);
  background: rgba(154, 41, 203, 0.1);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
}

.shop-rules-list strong {
  font-size: 0.66rem;
}

.shop-rules-list p {
  margin: 4px 0 0;
  color: #7f828b;
  font-size: 0.56rem;
  line-height: 1.65;
}

.shop-join-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.shop-join-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
}

.shop-join-copy,
.shop-join-form {
  border: 1px solid var(--shop-line);
  border-radius: 16px;
  padding: clamp(24px, 3.8vw, 43px);
  background: var(--shop-panel);
}

.shop-join-copy {
  background:
    radial-gradient(circle at 20% 0%, rgba(144, 39, 193, 0.16), transparent 38%),
    var(--shop-panel);
}

.shop-join-benefits {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.shop-join-benefits article {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  padding: 10px;
  color: #babcc3;
  background: rgba(6, 7, 10, 0.38);
  font-size: 0.6rem;
}

.shop-join-benefits svg {
  color: var(--shop-green);
}

.shop-reward-card {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(243, 185, 77, 0.18);
  border-radius: 10px;
  margin-top: 15px;
  padding: 13px;
  color: var(--shop-amber);
  background: rgba(139, 91, 15, 0.06);
}

.shop-reward-card div {
  display: grid;
  gap: 2px;
}

.shop-reward-card small {
  color: #a57e37;
  font-size: 0.52rem;
}

.shop-reward-card strong {
  color: #fff;
  font-size: 0.66rem;
}

.shop-join-form > header {
  border-bottom: 1px solid var(--shop-line);
  margin-bottom: 16px;
  padding-bottom: 14px;
}

.shop-join-form header span {
  color: var(--shop-purple-bright);
  font-size: 0.56rem;
  font-weight: 800;
}

.shop-join-form h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
}

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

.shop-join-form label {
  display: grid;
  gap: 6px;
}

.shop-join-form label > span {
  color: #a7a9b0;
  font-size: 0.59rem;
  font-weight: 700;
}

.shop-join-form input,
.shop-join-form select,
.shop-join-form textarea {
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 9px;
  padding: 12px 13px;
  color: #fff;
  background: #090a0d;
  font-size: 0.66rem;
  transition: 160ms ease;
}

.shop-join-form input:focus,
.shop-join-form select:focus,
.shop-join-form textarea:focus {
  border-color: rgba(204, 80, 246, 0.52);
  box-shadow: 0 0 0 3px rgba(170, 42, 216, 0.08);
}

.shop-join-form > label:not(.shop-checkbox-field) {
  margin-top: 10px;
}

.shop-checkbox-field {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  margin-top: 12px;
}

.shop-checkbox-field input {
  width: 17px;
  height: 17px;
  accent-color: var(--shop-purple);
}

.shop-submit-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(225, 145, 255, 0.34);
  border-radius: 9px;
  margin-top: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7920b7, #bd3de2);
  box-shadow: 0 16px 36px rgba(111, 23, 158, 0.24);
  font-size: 0.68rem;
  font-weight: 900;
  cursor: pointer;
}

.shop-submit-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.shop-form-message {
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
  font-size: 0.61rem;
}

.shop-form-message.is-success {
  border: 1px solid rgba(85, 216, 140, 0.22);
  color: #9ae9bc;
  background: rgba(85, 216, 140, 0.07);
}

.shop-form-message.is-error {
  border: 1px solid rgba(233, 90, 112, 0.22);
  color: #f0a0ae;
  background: rgba(233, 90, 112, 0.07);
}

.shop-portal .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #08090c;
}

.shop-portal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(.2, .8, .2, 1);
}

.shop-portal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shop-online-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes shop-hero-drift {
  0% { transform: scale(1.03) translate3d(-0.4%, 0, 0); }
  100% { transform: scale(1.09) translate3d(0.5%, -0.6%, 0); }
}

@keyframes shop-event-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .shop-portal .site-header {
    grid-template-columns: 170px 1fr auto;
    gap: 16px;
    padding-inline: 22px;
  }

  .shop-portal .main-nav {
    gap: 13px;
  }

  .shop-hero {
    grid-template-columns: 1fr 360px;
    padding: 46px;
  }

  .shop-category-grid,
  .shop-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-event-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .shop-portal .site-header {
    grid-template-columns: 1fr auto;
  }

  .shop-portal .main-nav {
    position: fixed;
    z-index: 140;
    top: 77px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(198, 82, 243, 0.25);
    border-radius: 13px;
    padding: 10px;
    background: rgba(8, 9, 12, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  }

  .shop-portal .main-nav--open {
    display: flex;
  }

  .shop-portal .main-nav a {
    border-radius: 8px;
    padding: 11px;
  }

  .shop-portal .main-nav a::after {
    display: none;
  }

  .shop-portal .main-nav a.active {
    background: rgba(151, 42, 201, 0.12);
  }

  .shop-portal .header-join {
    display: none;
  }

  .shop-portal .menu-button {
    display: inline-flex;
  }

  .shop-main {
    width: min(100% - 26px, 1520px);
  }

  .shop-hero {
    grid-template-columns: 1fr;
    padding: 38px 30px;
  }

  .shop-hero__console {
    max-width: 560px;
  }

  .shop-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-trust-grid article:nth-child(2) {
    border-left: 0;
  }

  .shop-trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--shop-line);
  }

  .shop-ranking-layout,
  .shop-rules-panel,
  .shop-join-layout {
    grid-template-columns: 1fr;
  }

  .shop-gallery-grid {
    grid-template-columns: 1.25fr 1fr;
  }

  .shop-gallery-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 650px) {
  .shop-main {
    width: min(100% - 18px, 1520px);
  }

  .shop-topbar {
    display: none;
  }

  .shop-hero {
    min-height: 640px;
    border-radius: 13px;
    margin-top: 10px;
    padding: 30px 20px;
  }

  .shop-hero h1 {
    font-size: 2.5rem;
  }

  .shop-hero__console {
    padding: 16px;
  }

  .shop-console__brand .logo-lockup > img {
    width: 82px;
  }

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

  .shop-trust-grid,
  .shop-category-grid,
  .shop-benefit-grid,
  .shop-staff-grid,
  .shop-event-grid,
  .shop-stat-grid,
  .shop-gallery-grid,
  .shop-form-grid {
    grid-template-columns: 1fr;
  }

  .shop-trust-grid article {
    border-bottom: 1px solid var(--shop-line);
    border-left: 0;
  }

  .shop-trust-grid article:last-child {
    border-bottom: 0;
  }

  .shop-section {
    padding: 55px 0;
  }

  .shop-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-category-card {
    min-height: 235px;
  }

  .shop-event-card:last-child,
  .shop-gallery-card:last-child {
    grid-column: auto;
  }

  .shop-filter-tabs {
    width: 100%;
  }

  .shop-filter-tabs button {
    flex: 1;
  }

  .shop-gallery-grid {
    grid-auto-rows: 260px;
  }

  .shop-events-section,
  .shop-gallery-section,
  .shop-join-section {
    margin-inline: -9px;
    padding-inline: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-portal *,
  .shop-portal *::before,
  .shop-portal *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .shop-portal [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* END SOLBA SHOP-INSPIRED UNIFIED MAIN PORTAL */

/* =========================================================
   SOLBA PREMIUM FORM CONTROLS + PORTAL POINTER GLOW
   ========================================================= */

.shop-portal {
  --portal-pointer-x: 50vw;
  --portal-pointer-y: 50vh;
  position: relative;
  isolation: isolate;
}

.shop-portal__pointer-glow {
  position: fixed;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle 360px at var(--portal-pointer-x) var(--portal-pointer-y),
      rgba(187, 58, 241, 0.17),
      rgba(126, 35, 187, 0.08) 36%,
      transparent 70%
    );
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.shop-portal.has-portal-pointer .shop-portal__pointer-glow {
  opacity: 1;
}

.shop-portal .site-header,
.shop-portal .shop-main,
.shop-portal .site-footer {
  position: relative;
  z-index: 2;
}

.shop-field {
  position: relative;
}

.shop-field-help,
.shop-field-error {
  display: block;
  margin-top: 1px;
  padding-right: 3px;
  font-size: 0.5rem;
  line-height: 1.5;
}

.shop-field-help {
  color: #656873;
}

.shop-field-error {
  color: #ff889f;
}

.shop-input-shell {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  background:
    linear-gradient(
      120deg,
      rgba(18, 19, 25, 0.96),
      rgba(10, 11, 15, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 10px 28px rgba(0, 0, 0, 0.14);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.shop-input-shell:focus-within {
  border-color: rgba(209, 89, 248, 0.58);
  box-shadow:
    0 0 0 3px rgba(170, 42, 216, 0.08),
    0 14px 34px rgba(80, 17, 112, 0.18);
  transform: translateY(-1px);
}

.shop-input-shell__badge {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(202, 82, 244, 0.3);
  border-radius: 9px;
  color: #dd7aff;
  background:
    linear-gradient(
      135deg,
      rgba(132, 36, 190, 0.24),
      rgba(82, 23, 113, 0.15)
    );
  font-family: 'Orbitron', sans-serif;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.shop-input-shell input {
  min-height: 48px;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.72rem !important;
  appearance: textfield;
  -moz-appearance: textfield;
}

.shop-input-shell input::-webkit-outer-spin-button,
.shop-input-shell input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.shop-input-shell__suffix {
  padding-left: 13px;
  color: #757985;
  font-size: 0.55rem;
  font-weight: 700;
}

.shop-activity-select {
  position: relative;
  z-index: 15;
}

.shop-activity-select.is-open {
  z-index: 80;
}

.shop-activity-trigger {
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  padding: 8px 10px;
  color: #fff;
  background:
    linear-gradient(
      120deg,
      rgba(18, 19, 25, 0.98),
      rgba(9, 10, 14, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 10px 28px rgba(0, 0, 0, 0.14);
  text-align: right;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.shop-activity-trigger:hover,
.shop-activity-select.is-open .shop-activity-trigger {
  border-color: rgba(209, 89, 248, 0.58);
  box-shadow:
    0 0 0 3px rgba(170, 42, 216, 0.07),
    0 14px 34px rgba(80, 17, 112, 0.18);
  transform: translateY(-1px);
}

.shop-activity-select.has-error .shop-activity-trigger {
  border-color: rgba(255, 102, 132, 0.55);
  box-shadow:
    0 0 0 3px rgba(255, 84, 116, 0.06);
}

.shop-activity-trigger__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(197, 75, 240, 0.28);
  border-radius: 10px;
  color: #d767f7;
  background:
    linear-gradient(
      135deg,
      rgba(135, 34, 185, 0.22),
      rgba(70, 18, 98, 0.11)
    );
}

.shop-activity-trigger__copy {
  display: grid;
  gap: 2px;
}

.shop-activity-trigger__copy strong {
  color: #f5f1f8;
  font-size: 0.65rem;
}

.shop-activity-trigger__copy small {
  color: #737783;
  font-size: 0.5rem;
}

.shop-activity-trigger__arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #9a9da7;
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(90deg);
  transition:
    color 160ms ease,
    transform 180ms ease,
    background 160ms ease;
}

.shop-activity-select.is-open
  .shop-activity-trigger__arrow {
  color: #e17cff;
  background: rgba(177, 50, 224, 0.1);
  transform: rotate(-90deg);
}

.shop-activity-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 6px;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 80, 241, 0.23);
  border-radius: 13px;
  padding: 0 7px;
  opacity: 0;
  background:
    linear-gradient(
      145deg,
      rgba(17, 14, 22, 0.99),
      rgba(8, 8, 12, 0.99)
    );
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(151, 36, 198, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(-7px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 170ms ease,
    transform 170ms ease,
    max-height 220ms ease,
    padding 170ms ease,
    visibility 170ms ease;
}

.shop-activity-select.is-open .shop-activity-menu {
  visibility: visible;
  max-height: 280px;
  padding: 7px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.shop-activity-menu > button {
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.018);
  text-align: right;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    transform 150ms ease;
}

.shop-activity-menu > button:hover {
  border-color: rgba(197, 76, 238, 0.22);
  background:
    linear-gradient(
      120deg,
      rgba(132, 34, 185, 0.1),
      rgba(255, 255, 255, 0.025)
    );
  transform: translateX(-2px);
}

.shop-activity-menu > button.is-selected {
  border-color: rgba(207, 88, 247, 0.34);
  background:
    linear-gradient(
      120deg,
      rgba(143, 39, 197, 0.17),
      rgba(94, 25, 128, 0.08)
    );
}

.shop-activity-option__level {
  display: grid;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(207, 88, 247, 0.2);
  border-radius: 8px;
  color: #d86af8;
  background: rgba(149, 44, 197, 0.08);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.shop-activity-option__copy {
  display: grid;
  gap: 2px;
}

.shop-activity-option__copy strong {
  font-size: 0.63rem;
}

.shop-activity-option__copy small {
  color: #6f737d;
  font-size: 0.49rem;
}

.shop-activity-option__check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  background: rgba(255, 255, 255, 0.025);
  transition:
    color 150ms ease,
    background 150ms ease;
}

.shop-activity-menu > button.is-selected
  .shop-activity-option__check {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #8c29cf,
      #ca4ff0
    );
}

.shop-submit-button {
  position: relative;
  display: grid !important;
  width: 100%;
  min-height: 68px !important;
  grid-template-columns: minmax(0, 1fr) 50px;
  align-items: center;
  gap: 14px !important;
  overflow: hidden;
  border: 1px solid rgba(224, 139, 255, 0.5) !important;
  border-radius: 14px !important;
  margin-top: 16px !important;
  padding: 8px 9px 8px 20px !important;
  color: #fff !important;
  background:
    linear-gradient(
      110deg,
      rgba(72, 14, 105, 0.98),
      rgba(151, 37, 200, 0.97)
    ) !important;
  box-shadow:
    0 20px 48px rgba(92, 18, 132, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  text-align: right;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease !important;
}

.shop-submit-button__glow {
  position: absolute;
  top: -90%;
  bottom: -90%;
  left: -34%;
  width: 28%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.24),
      transparent
    );
  transform: rotate(17deg);
  animation: shop-submit-shine 4.6s ease-in-out 1.2s infinite;
}

.shop-submit-button__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 2px;
}

.shop-submit-button__copy small {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.5rem;
  font-weight: 600;
}

.shop-submit-button__copy strong {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.shop-submit-button__action {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 11px;
  color: #b13add;
  background: #fff;
  box-shadow:
    0 10px 24px rgba(72, 11, 104, 0.28);
  transition:
    transform 170ms ease,
    color 170ms ease,
    background 170ms ease;
}

.shop-submit-button:hover:not(:disabled) {
  border-color: rgba(240, 180, 255, 0.82) !important;
  box-shadow:
    0 26px 58px rgba(112, 20, 155, 0.42),
    0 0 32px rgba(201, 73, 244, 0.18) !important;
  transform: translateY(-3px);
}

.shop-submit-button:hover:not(:disabled)
  .shop-submit-button__action {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #a333da,
      #dd5cff
    );
  transform: translateX(-3px);
}

.shop-submit-button:active:not(:disabled) {
  transform: translateY(-1px) scale(0.997);
}

@keyframes shop-submit-shine {
  0%,
  58% {
    left: -34%;
    opacity: 0;
  }

  64% {
    opacity: 1;
  }

  82%,
  100% {
    left: 124%;
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .shop-portal__pointer-glow {
    display: none;
  }

  .shop-submit-button {
    min-height: 64px !important;
  }

  .shop-activity-menu {
    position: fixed;
    z-index: 999;
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .shop-activity-select.is-open .shop-activity-menu {
    max-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-portal__pointer-glow {
    display: none;
  }

  .shop-submit-button__glow {
    animation: none;
  }
}

/* END SOLBA PREMIUM FORM CONTROLS + PORTAL POINTER GLOW */

/* =========================================================
   SOLBA IDENTITY + TELEGRAM PREMIUM FIELDS
   ========================================================= */

.shop-input-shell--identity,
.shop-input-shell--telegram {
  grid-template-columns: 44px minmax(0, 1fr) !important;
}

.shop-input-shell__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(202, 82, 244, 0.3);
  border-radius: 9px;
  color: #dd7aff;
  background:
    linear-gradient(
      135deg,
      rgba(132, 36, 190, 0.24),
      rgba(82, 23, 113, 0.15)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 7px 18px rgba(80, 18, 111, 0.15);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.shop-input-shell--identity:focus-within
  .shop-input-shell__icon,
.shop-input-shell--telegram:focus-within
  .shop-input-shell__icon {
  border-color: rgba(225, 121, 255, 0.58);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #8b2acd,
      #c448ec
    );
  box-shadow:
    0 8px 22px rgba(133, 29, 183, 0.32),
    0 0 20px rgba(212, 82, 250, 0.18);
  transform: scale(1.04);
}

/* END SOLBA IDENTITY + TELEGRAM PREMIUM FIELDS */

/* =========================================================
   SOLBA ROLE AVATAR LOCAL PREVIEW
   ========================================================= */

.shop-member-emblem {
  overflow: hidden;
  box-shadow:
    0 10px 28px rgba(95, 23, 131, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.shop-member-emblem > span {
  position: relative;
  z-index: 1;
}

.shop-member-emblem img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  object-position: center 28%;
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.shop-staff-grid article:hover .shop-member-emblem img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.08);
}

.shop-member-emblem i {
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 0 18px rgba(178, 64, 228, 0.16);
}

.is-founder .shop-member-emblem {
  box-shadow:
    0 12px 30px rgba(157, 103, 16, 0.2),
    0 0 22px rgba(236, 186, 64, 0.08);
}

.staff-member-mark {
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(79, 16, 111, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.staff-member-mark::after {
  z-index: 3;
  inset: auto 0 0;
  height: 38%;
  border-radius: 0;
  background:
    linear-gradient(
      to top,
      rgba(9, 6, 13, 0.5),
      transparent
    );
  pointer-events: none;
}

.staff-member-mark span {
  z-index: 1;
}

.staff-member-mark img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.staff-member-card:hover .staff-member-mark img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.07);
}

.staff-member-card--founder .staff-member-mark {
  box-shadow:
    0 12px 30px rgba(151, 102, 16, 0.2),
    0 0 22px rgba(238, 188, 63, 0.08);
}

/* END SOLBA ROLE AVATAR LOCAL PREVIEW */

/* =========================================================
   SOLBA CINEMATIC GALLERY + EVENT COVERS
   ========================================================= */

.shop-event-card__visual {
  isolation: isolate;
}

.shop-event-card__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    saturate(0.9)
    contrast(1.08)
    brightness(0.66);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.shop-event-card__visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background:
    linear-gradient(
      145deg,
      rgba(7, 7, 11, 0.1),
      rgba(12, 7, 17, 0.54)
    ),
    linear-gradient(
      to top,
      rgba(6, 7, 10, 0.92),
      transparent 68%
    );
}

.shop-event-card:hover .shop-event-card__image {
  filter:
    saturate(1.08)
    contrast(1.08)
    brightness(0.76);
  transform: scale(1.06);
}

.shop-event-card__symbol {
  border-color: rgba(222, 113, 255, 0.3) !important;
  background:
    rgba(18, 10, 25, 0.62) !important;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shop-gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 205px;
  gap: 12px;
}

.shop-gallery-card {
  grid-column: span 4;
  min-height: 205px;
  box-shadow:
    0 17px 38px rgba(0, 0, 0, 0.2);
}

.shop-gallery-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.shop-gallery-card:nth-child(2),
.shop-gallery-card:nth-child(3) {
  grid-column: span 5;
}

.shop-gallery-card:nth-child(4),
.shop-gallery-card:nth-child(5),
.shop-gallery-card:nth-child(6) {
  grid-column: span 4;
}

.shop-gallery-card img {
  filter:
    saturate(0.9)
    contrast(1.06)
    brightness(0.86);
}

.shop-gallery-card:hover img {
  filter:
    saturate(1.08)
    contrast(1.08)
    brightness(0.98);
  transform: scale(1.055);
}

.shop-gallery-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: '';
  background:
    linear-gradient(
      135deg,
      rgba(211, 91, 251, 0.19),
      transparent 30%,
      transparent 72%,
      rgba(154, 50, 211, 0.12)
    )
    border-box;
  pointer-events: none;
}

.shop-gallery-card:nth-child(1) h3 {
  max-width: 620px;
  font-size: clamp(1.1rem, 1.9vw, 1.65rem);
}

.shop-gallery-card:nth-child(1) span {
  font-size: 0.6rem;
}

@media (max-width: 980px) {
  .shop-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 245px;
  }

  .shop-gallery-card,
  .shop-gallery-card:nth-child(1),
  .shop-gallery-card:nth-child(2),
  .shop-gallery-card:nth-child(3),
  .shop-gallery-card:nth-child(4),
  .shop-gallery-card:nth-child(5),
  .shop-gallery-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .shop-gallery-card:nth-child(1) {
    grid-column: span 2;
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .shop-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 225px;
  }

  .shop-gallery-card,
  .shop-gallery-card:nth-child(1),
  .shop-gallery-card:nth-child(2),
  .shop-gallery-card:nth-child(3),
  .shop-gallery-card:nth-child(4),
  .shop-gallery-card:nth-child(5),
  .shop-gallery-card:nth-child(6) {
    grid-column: span 1;
    min-height: 225px;
  }

  .shop-gallery-card:nth-child(1) {
    min-height: 285px;
  }
}

/* END SOLBA CINEMATIC GALLERY + EVENT COVERS */

/* =========================================================
   SOLBA HALL OF FAME + PREMIUM RANKING
   ========================================================= */

.shop-ranking-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.shop-ranking-section::before {
  position: absolute;
  top: 110px;
  right: -210px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  content: '';
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(172, 52, 220, 0.12),
      transparent 68%
    );
  filter: blur(8px);
}

.shop-section-heading--ranking > div > span {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.13em;
}

.shop-ranking-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(285px, 0.55fr);
  gap: 14px;
}

.shop-ranking-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shop-ranking-stats article {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 13px;
  padding: 13px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(155, 44, 205, 0.12),
      transparent 48%
    ),
    linear-gradient(
      135deg,
      rgba(18, 18, 24, 0.97),
      rgba(10, 11, 15, 0.98)
    );
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.shop-ranking-stats article > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid rgba(207, 83, 246, 0.2);
  border-radius: 10px;
  color: #dd71ff;
  background:
    linear-gradient(
      135deg,
      rgba(141, 37, 192, 0.22),
      rgba(78, 19, 106, 0.09)
    );
}

.shop-ranking-stats article > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.shop-ranking-stats small {
  color: #777b86;
  font-size: 0.51rem;
}

.shop-ranking-stats strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-ranking-stats article > i {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  padding: 5px 7px;
  color: #676b75;
  background: rgba(255, 255, 255, 0.025);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.39rem;
  font-style: normal;
  letter-spacing: 0.09em;
}

.shop-ranking-arena,
.shop-awards-panel {
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 17, 23, 0.98),
      rgba(9, 10, 14, 0.99)
    );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.shop-ranking-arena__header,
.shop-awards-panel > header {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--shop-line);
  padding: 15px 17px;
}

.shop-ranking-arena__header > div:first-child,
.shop-awards-panel > header > div {
  display: grid;
  gap: 3px;
}

.shop-ranking-arena__header span,
.shop-awards-panel > header span {
  color: var(--shop-amber);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.44rem;
  letter-spacing: 0.12em;
}

.shop-ranking-arena__header h3,
.shop-awards-panel > header h3 {
  margin: 0;
  color: #fff;
  font-size: 0.79rem;
}

.shop-ranking-season {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(232, 187, 74, 0.2);
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--shop-amber);
  background: rgba(177, 116, 16, 0.07);
}

.shop-ranking-season span {
  font-size: 0.4rem;
}

.shop-ranking-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  padding: 20px 16px 17px;
}

.shop-podium-card {
  --podium-accent: #a95bd0;
  --podium-glow: rgba(158, 58, 201, 0.18);
  position: relative;
  display: grid;
  min-height: 276px;
  align-content: start;
  justify-items: center;
  overflow: hidden;
  border: 1px solid color-mix(
    in srgb,
    var(--podium-accent) 28%,
    transparent
  );
  border-radius: 14px;
  padding: 14px 11px 12px;
  background:
    linear-gradient(
      180deg,
      color-mix(
        in srgb,
        var(--podium-accent) 9%,
        transparent
      ),
      rgba(10, 10, 14, 0.98) 42%
    );
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.shop-podium-card--1 {
  --podium-accent: #f1c65e;
  --podium-glow: rgba(236, 177, 45, 0.22);
  min-height: 305px;
  border-color: rgba(239, 192, 76, 0.42);
  transform: translateY(-8px);
}

.shop-podium-card--2 {
  --podium-accent: #c5cad4;
  --podium-glow: rgba(204, 210, 221, 0.14);
}

.shop-podium-card--3 {
  --podium-accent: #bc744a;
  --podium-glow: rgba(186, 100, 54, 0.17);
}

.shop-podium-card:hover {
  border-color: color-mix(
    in srgb,
    var(--podium-accent) 58%,
    transparent
  );
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.24),
    0 0 30px var(--podium-glow);
  transform: translateY(-5px);
}

.shop-podium-card--1:hover {
  transform: translateY(-13px);
}

.shop-podium-card__glow {
  position: absolute;
  top: -85px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      var(--podium-glow),
      transparent 69%
    );
  filter: blur(4px);
}

.shop-podium-card__medal {
  position: relative;
  z-index: 2;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid color-mix(
    in srgb,
    var(--podium-accent) 43%,
    transparent
  );
  border-radius: 50%;
  color: var(--podium-accent);
  background: rgba(8, 8, 11, 0.78);
  box-shadow:
    0 8px 22px var(--podium-glow);
}

.shop-podium-card__medal b {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid #0b0b0f;
  border-radius: 50%;
  color: #0b0b0f;
  background: var(--podium-accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.43rem;
}

.shop-podium-card__avatar {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 2px solid color-mix(
    in srgb,
    var(--podium-accent) 68%,
    transparent
  );
  border-radius: 18px;
  margin-top: 10px;
  box-shadow:
    0 12px 28px var(--podium-glow);
}

.shop-podium-card--1 .shop-podium-card__avatar {
  width: 88px;
  height: 88px;
}

.shop-podium-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.shop-podium-card__avatar span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  left: 5px;
  overflow: hidden;
  border-radius: 5px;
  padding: 3px 4px;
  color: #fff;
  background: rgba(7, 7, 10, 0.72);
  font-size: 0.37rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(7px);
}

.shop-podium-card__copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 4px;
  margin-top: 11px;
  text-align: center;
}

.shop-podium-card__copy small {
  color: var(--podium-accent);
  font-size: 0.48rem;
  font-weight: 700;
}

.shop-podium-card__copy strong {
  overflow: hidden;
  width: 100%;
  color: #fff;
  font-size: 0.63rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-podium-card__score {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  margin-top: 12px;
  padding-top: 10px;
}

.shop-podium-card__score span {
  color: #676b74;
  font-size: 0.43rem;
}

.shop-podium-card__score b {
  color: var(--podium-accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
}

.shop-podium-card__progress {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.shop-podium-card__progress i {
  display: block;
  width: var(--ranking-progress);
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      color-mix(
        in srgb,
        var(--podium-accent) 56%,
        #6e1e94
      ),
      var(--podium-accent)
    );
  box-shadow:
    0 0 14px var(--podium-glow);
}

.shop-ranking-list {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--shop-line);
  padding: 10px 15px 14px;
}

.shop-ranking-list article {
  display: grid;
  grid-template-columns: 31px 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.015);
}

.shop-ranking-list article > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: #aeb1b9;
  background: rgba(255, 255, 255, 0.045);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.5rem;
}

.shop-ranking-list img {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(213, 86, 248, 0.22);
  border-radius: 9px;
  object-fit: cover;
}

.shop-ranking-list article > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.shop-ranking-list strong {
  overflow: hidden;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-ranking-list small {
  color: #71747d;
  font-size: 0.45rem;
}

.shop-ranking-list article > b {
  color: #d761f3;
  font-size: 0.57rem;
}

.shop-awards-panel > header {
  color: #d66ef4;
  background:
    linear-gradient(
      90deg,
      rgba(139, 36, 185, 0.08),
      transparent
    );
}

.shop-awards-panel > header span {
  color: #d66ef4;
}

.shop-awards-panel > div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.shop-award-card {
  --award-accent: #d165f1;
  display: grid;
  min-height: 92px;
  grid-template-columns: 42px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px;
  padding: 10px;
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(
        in srgb,
        var(--award-accent) 10%,
        transparent
      ),
      transparent 52%
    ),
    rgba(255, 255, 255, 0.015);
  transition:
    border-color 170ms ease,
    transform 170ms ease,
    background 170ms ease;
}

.shop-award-card--active {
  --award-accent: #6fdef3;
}

.shop-award-card--loyal {
  --award-accent: #f0c55d;
}

.shop-award-card--driver {
  --award-accent: #d25df2;
}

.shop-award-card:hover {
  border-color: color-mix(
    in srgb,
    var(--award-accent) 32%,
    transparent
  );
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(
        in srgb,
        var(--award-accent) 15%,
        transparent
      ),
      transparent 54%
    ),
    rgba(255, 255, 255, 0.02);
  transform: translateX(-3px);
}

.shop-award-card > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid color-mix(
    in srgb,
    var(--award-accent) 28%,
    transparent
  );
  border-radius: 10px;
  color: var(--award-accent);
  background:
    color-mix(
      in srgb,
      var(--award-accent) 8%,
      transparent
    );
}

.shop-award-card > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.shop-award-card small {
  color: var(--award-accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.41rem;
  letter-spacing: 0.06em;
}

.shop-award-card strong {
  color: #fff;
  font-size: 0.6rem;
}

.shop-award-card p {
  overflow: hidden;
  margin: 3px 0 0;
  color: #747780;
  font-size: 0.46rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-award-card > i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: #777b84;
  background: rgba(255, 255, 255, 0.03);
  font-style: normal;
}

.shop-awards-panel__note {
  border-top: 1px solid var(--shop-line);
  margin: 0;
  padding: 12px 15px 14px;
  color: #676a73;
  font-size: 0.46rem;
  line-height: 1.8;
}

@media (max-width: 1120px) {
  .shop-ranking-dashboard {
    grid-template-columns: 1fr;
  }

  .shop-ranking-stats {
    grid-column: auto;
  }

  .shop-awards-panel {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .shop-ranking-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-ranking-podium {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .shop-podium-card,
  .shop-podium-card--1 {
    min-height: 0;
    grid-template-columns: 48px 68px minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    gap: 10px;
    padding: 11px;
    transform: none;
  }

  .shop-podium-card:hover,
  .shop-podium-card--1:hover {
    transform: translateY(-3px);
  }

  .shop-podium-card__medal {
    width: 42px;
    height: 42px;
  }

  .shop-podium-card__avatar,
  .shop-podium-card--1 .shop-podium-card__avatar {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .shop-podium-card__copy {
    align-self: center;
    justify-items: start;
    margin: 0;
    text-align: right;
  }

  .shop-podium-card__score,
  .shop-podium-card__progress {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shop-ranking-stats {
    grid-template-columns: 1fr;
  }

  .shop-ranking-stats article {
    min-height: 82px;
  }

  .shop-ranking-arena__header,
  .shop-awards-panel > header {
    align-items: flex-start;
    gap: 12px;
  }

  .shop-ranking-season {
    padding: 6px;
  }

  .shop-ranking-season span {
    display: none;
  }

  .shop-podium-card,
  .shop-podium-card--1 {
    grid-template-columns: 42px 58px minmax(0, 1fr);
  }

  .shop-podium-card__avatar,
  .shop-podium-card--1 .shop-podium-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .shop-award-card {
    grid-template-columns: 39px minmax(0, 1fr) 24px;
  }
}

/* END SOLBA HALL OF FAME + PREMIUM RANKING */

/* =========================================================
   SOLBA ADMIN-DRIVEN SPECIAL AWARDS
   ========================================================= */

.shop-award-card {
  --award-accent: #d165f1;
}

.shop-award-card > span {
  border-color:
    color-mix(
      in srgb,
      var(--award-accent) 34%,
      transparent
    );
  color: var(--award-accent);
  background:
    color-mix(
      in srgb,
      var(--award-accent) 10%,
      transparent
    );
}

.shop-award-card small {
  color: var(--award-accent);
}

.shop-award-card:hover {
  border-color:
    color-mix(
      in srgb,
      var(--award-accent) 38%,
      transparent
    );
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(
        in srgb,
        var(--award-accent) 16%,
        transparent
      ),
      transparent 54%
    ),
    rgba(255, 255, 255, 0.02);
}

/* END SOLBA ADMIN-DRIVEN SPECIAL AWARDS */

/* =========================================================
   SOLBA STAFF SUMMARY CARDS — TYPOGRAPHY FIX
   ========================================================= */

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

.staff-ranking-summary__card {
  --summary-accent: #cd62ef;
  --summary-accent-rgb: 205, 98, 239;
  position: relative;
  display: flex !important;
  min-width: 0;
  min-height: 146px !important;
  flex-direction: column;
  justify-content: space-between !important;
  overflow: hidden;
  border:
    1px solid
    rgba(var(--summary-accent-rgb), 0.23) !important;
  border-radius: 15px !important;
  padding: 14px !important;
  color: var(--summary-accent) !important;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(var(--summary-accent-rgb), 0.13),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(17, 14, 23, 0.98),
      rgba(10, 10, 15, 0.99)
    ) !important;
  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.staff-ranking-summary__card::before {
  position: absolute;
  top: -58px;
  right: -54px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  content: '';
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(var(--summary-accent-rgb), 0.16),
      transparent 69%
    );
  filter: blur(3px);
}

.staff-ranking-summary__card:hover {
  border-color:
    rgba(var(--summary-accent-rgb), 0.43) !important;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.23),
    0 0 24px rgba(var(--summary-accent-rgb), 0.08);
  transform: translateY(-3px);
}

.staff-ranking-summary__card--members {
  --summary-accent: #d66af5;
  --summary-accent-rgb: 214, 106, 245;
}

.staff-ranking-summary__card--wars {
  --summary-accent: #cc64ef;
  --summary-accent-rgb: 204, 100, 239;
}

.staff-ranking-summary__card--active {
  --summary-accent: #69d8ee;
  --summary-accent-rgb: 105, 216, 238;
}

.staff-ranking-summary__card--killer {
  --summary-accent: #efc45d;
  --summary-accent-rgb: 239, 196, 93;
}

.staff-ranking-summary__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9px;
  direction: rtl;
}

.staff-ranking-summary__icon {
  display: grid !important;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border:
    1px solid
    rgba(var(--summary-accent-rgb), 0.29);
  border-radius: 10px;
  color: var(--summary-accent) !important;
  background:
    rgba(var(--summary-accent-rgb), 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.staff-ranking-summary__head > small {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 4px 7px;
  color: #77717e;
  background: rgba(255, 255, 255, 0.025);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  direction: ltr;
}

.staff-ranking-summary__body {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 6px;
  margin-top: 15px;
  text-align: right;
}

.staff-ranking-summary__body > span {
  display: block;
  margin: 0 !important;
  color: #85808b !important;
  font-size: 0.55rem !important;
  line-height: 1.7;
}

.staff-ranking-summary__body > strong {
  display: block;
  min-width: 0;
  margin: 0 !important;
  color: #fff !important;
}

.staff-ranking-summary__number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.8rem) !important;
  line-height: 1;
  letter-spacing: -0.03em;
}

.staff-ranking-summary__name {
  overflow: visible !important;
  font-family:
    'Inter',
    'Segoe UI',
    sans-serif;
  font-size: clamp(0.62rem, 1.7vw, 0.76rem) !important;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 520px) {
  .staff-ranking-summary {
    gap: 9px;
  }

  .staff-ranking-summary__card {
    min-height: 137px !important;
    border-radius: 13px !important;
    padding: 12px !important;
  }

  .staff-ranking-summary__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .staff-ranking-summary__head > small {
    padding: 4px 6px;
    font-size: 0.34rem;
  }

  .staff-ranking-summary__body {
    gap: 5px;
    margin-top: 12px;
  }

  .staff-ranking-summary__body > span {
    font-size: 0.5rem !important;
  }

  .staff-ranking-summary__name {
    font-size: 0.59rem !important;
  }
}

@media (max-width: 350px) {
  .staff-ranking-summary {
    grid-template-columns: 1fr;
  }
}

/* END SOLBA STAFF SUMMARY CARDS — TYPOGRAPHY FIX */

