﻿* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #dddcdd;
  background:
    radial-gradient(circle at 16% 8%, rgba(239, 211, 25, 0.1), transparent 18rem),
    radial-gradient(circle at 84% 18%, rgba(212, 139, 0, 0.12), transparent 22rem),
    radial-gradient(circle at 50% 100%, rgba(219, 164, 1, 0.08), transparent 26rem),
    linear-gradient(135deg, #080501 0%, #0d0903 42%, #080501 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(221, 220, 221, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 220, 221, 0.014) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, transparent 0 38%, rgba(8, 5, 1, 0.54) 72%),
    linear-gradient(90deg, rgba(8, 5, 1, 0.84), transparent 22%, transparent 78%, rgba(8, 5, 1, 0.84));
  pointer-events: none;
}

body {
  min-width: 320px;
  min-height: 100vh;
  color: #dddcdd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 0.65rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(239, 211, 25, 0.42);
  border-bottom: 1px solid rgba(221, 220, 221, 0.07);
  background:
    linear-gradient(90deg, rgba(8, 5, 1, 0.76), rgba(13, 9, 3, 0.92), rgba(8, 5, 1, 0.76));
  backdrop-filter: blur(18px);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
}

.navbar__inner {
  width: min(72rem, 100%);
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr) 10rem;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.navbar__brand img {
  width: clamp(7.5rem, 11vw, 10rem);
  height: 3.2rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(239, 211, 25, 0.16));
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.1vw, 2rem);
}

.navbar__link {
  position: relative;
  padding: 0.5rem 0;
  color: rgba(221, 220, 221, 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.05rem;
  width: 0;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #efd319, #dba401);
  box-shadow: 0 0 16px rgba(239, 211, 25, 0.3);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.navbar__link:hover,
.navbar__link--active {
  color: #dddcdd;
  text-shadow: 0 0 18px rgba(239, 211, 25, 0.14);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 70%;
}

.navbar__connect {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  color: #080501;
  border-radius: 999px;
  background: linear-gradient(135deg, #efd319, #dba401 60%, #d48b00);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 0.8rem 2rem rgba(212, 139, 0, 0.16);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.navbar__connect:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(8, 5, 1, 0.18), transparent 28%, rgba(8, 5, 1, 0.34)),
    transparent;
}

.hero {
  position: relative;
  min-height: clamp(30rem, 70vh, 41rem);
  display: grid;
  place-items: center;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 45%, rgba(239, 211, 25, 0.1), transparent 19rem),
    radial-gradient(circle at 18% 44%, rgba(221, 220, 221, 0.045), transparent 18rem),
    radial-gradient(circle at 82% 44%, rgba(212, 139, 0, 0.09), transparent 18rem),
    linear-gradient(180deg, rgba(8, 5, 1, 0.1), rgba(8, 5, 1, 0.74));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 1, 0.92));
  pointer-events: none;
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(72rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo {
  width: clamp(20rem, 28vw, 28rem);
  height: clamp(8rem, 11.6vw, 11.2rem);
  object-fit: contain;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  filter: drop-shadow(0 0 24px rgba(239, 211, 25, 0.16));
}

.hero__title {
  color: #ffffff;
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero__description {
  max-width: 44rem;
  margin: clamp(1.1rem, 2vw, 1.55rem) auto 0;
  color: rgba(221, 220, 221, 0.72);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: -0.015em;
}

.services-section {
  position: relative;
  width: min(76rem, calc(100% - clamp(2rem, 6vw, 7rem)));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.services-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(34rem, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 211, 25, 0.36), transparent);
  transform: translateX(-50%);
}

.services-section__intro {
  max-width: 43rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.services-section__intro span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #efd319;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-section__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.services-section__intro p {
  max-width: 39rem;
  margin: 1.25rem 0 0;
  color: rgba(221, 220, 221, 0.66);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.8;
}

.services-section__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(20rem, 1fr);
  align-items: center;
  gap: clamp(2.2rem, 6vw, 5rem);
}

.services-visual {
  position: relative;
  min-height: clamp(23rem, 39vw, 34rem);
  filter: grayscale(1);
}

.services-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 4% 4%;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 65% 22%, rgba(239, 211, 25, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(221, 220, 221, 0.17), rgba(8, 5, 1, 0.72));
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(221, 220, 221, 0.08);
  clip-path: polygon(10% 12%, 76% 12%, 83% 0, 96% 0, 91% 22%, 100% 22%, 100% 76%, 86% 76%, 78% 100%, 8% 100%, 0 88%, 8% 44%, 0 44%, 0 28%, 8% 28%);
}

.services-visual__screen {
  position: absolute;
  left: 14%;
  top: 32%;
  width: 54%;
  height: 34%;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(221, 220, 221, 0.1);
  border-radius: 0.8rem;
  background: rgba(8, 5, 1, 0.84);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.36);
  transform: rotate(-2deg);
}

.services-visual__screen span {
  display: block;
  height: 0.42rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 211, 25, 0.72), rgba(221, 220, 221, 0.22), transparent);
}

.services-visual__screen span:nth-child(2) {
  width: 72%;
}

.services-visual__screen span:nth-child(3) {
  width: 88%;
}

.services-visual__screen span:nth-child(4) {
  width: 54%;
}

.services-visual__screen span:nth-child(5) {
  width: 78%;
}

.services-visual__phone,
.services-visual__card {
  position: absolute;
  border: 1px solid rgba(221, 220, 221, 0.1);
  background: linear-gradient(145deg, rgba(221, 220, 221, 0.2), rgba(8, 5, 1, 0.66));
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.38);
}

.services-visual__phone {
  left: 0;
  top: 35%;
  width: 4.5rem;
  height: 8rem;
  border-radius: 1.1rem;
  transform: rotate(-8deg);
}

.services-visual__card {
  right: 0;
  bottom: 20%;
  width: 6rem;
  height: 6.7rem;
  border-radius: 1rem;
  transform: rotate(4deg);
}

.services-visual__slash {
  position: absolute;
  width: 3.8rem;
  height: 11rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(221, 220, 221, 0.9), rgba(221, 220, 221, 0.32));
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.32);
}

.services-visual__slash--one {
  right: 7%;
  top: 14%;
  transform: rotate(5deg);
}

.services-visual__slash--two {
  right: 14%;
  bottom: 14%;
  height: 8rem;
  transform: rotate(8deg);
}

.services-list {
  display: grid;
  gap: 0.85rem;
}

.services-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.15rem 1.2rem 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(221, 220, 221, 0.06);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(221, 220, 221, 0.045), rgba(221, 220, 221, 0.012)),
    rgba(8, 5, 1, 0.34);
  box-shadow: inset 0 0 0 1px rgba(221, 220, 221, 0.015);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.services-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #efd319, transparent);
  opacity: 0.72;
}

.services-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 50%, rgba(239, 211, 25, 0.09), transparent 14rem);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.services-item:hover {
  border-color: rgba(239, 211, 25, 0.2);
  background:
    linear-gradient(135deg, rgba(239, 211, 25, 0.055), rgba(221, 220, 221, 0.018)),
    rgba(8, 5, 1, 0.46);
  box-shadow:
    0 1rem 2.5rem rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(239, 211, 25, 0.025);
  transform: translateX(5px);
}

.services-item:hover::after {
  opacity: 1;
}

.services-item__index {
  position: relative;
  z-index: 1;
  min-width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #efd319;
  border: 1px solid rgba(239, 211, 25, 0.18);
  border-radius: 999px;
  background: rgba(239, 211, 25, 0.045);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.services-item__content {
  position: relative;
  z-index: 1;
}

.services-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.services-item p {
  margin: 0.48rem 0 0;
  color: rgba(221, 220, 221, 0.7);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.76;
}

.cities-section {
  width: 100%;
  padding: clamp(3.6rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 4rem) clamp(2.4rem, 4vw, 3.8rem);
  overflow: hidden;
}

.cities-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
}

.cities-heading span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(221, 220, 221, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cities-heading span::before,
.cities-heading span::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 211, 25, 0.65));
}

.cities-heading span::after {
  background: linear-gradient(90deg, rgba(239, 211, 25, 0.65), transparent);
}

.cities-heading h2 {
  position: relative;
  display: inline-flex;
  margin: 0;
  color: #dddcdd;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.38);
}

.cities-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  width: clamp(5rem, 12vw, 9rem);
  height: 0.2rem;
  background: linear-gradient(90deg, transparent, #efd319, #dba401, transparent);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(239, 211, 25, 0.24);
}

.cities-carousel {
  width: min(70rem, 100%);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(100%, 58rem), 1fr);
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0.45rem 0.45rem 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cities-frame {
  position: relative;
  width: min(78rem, 100%);
  margin: 0 auto;
}

.cities-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(3.6rem, 6vw, 5.4rem);
  height: clamp(2.6rem, 4vw, 3.6rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(221, 220, 221, 0.24);
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.cities-arrow:hover {
  color: rgba(239, 211, 25, 0.82);
  filter: drop-shadow(0 0 12px rgba(239, 211, 25, 0.22));
}

.cities-arrow--previous {
  left: clamp(-2.4rem, -3vw, -1rem);
}

.cities-arrow--previous:hover {
  transform: translate(-4px, -50%);
}

.cities-arrow--next {
  right: clamp(-2.4rem, -3vw, -1rem);
}

.cities-arrow--next:hover {
  transform: translate(4px, -50%);
}

.cities-arrow svg {
  width: 100%;
  height: 100%;
}

.cities-carousel::-webkit-scrollbar {
  display: none;
}

.city-card {
  position: relative;
  min-height: clamp(16.5rem, 28vw, 22rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(1.8rem, 3.2vw, 3rem);
  overflow: hidden;
  border: 0;
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 77% 26%, rgba(239, 211, 25, 0.18), transparent 16rem),
    linear-gradient(90deg, rgba(8, 5, 1, 0.98), rgba(8, 5, 1, 0.93) 48%, rgba(8, 5, 1, 0.64)),
    #080501;
  box-shadow:
    0 1.5rem 4.5rem rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(221, 220, 221, 0.035);
  scroll-snap-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.city-card:hover {
  box-shadow:
    0 1.8rem 5rem rgba(0, 0, 0, 0.55),
    0 0 36px rgba(239, 211, 25, 0.08),
    inset 0 0 0 1px rgba(239, 211, 25, 0.06);
  transform: translateY(-4px);
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(239, 211, 25, 0.38), rgba(212, 139, 0, 0.08) 34%, rgba(221, 220, 221, 0.04) 54%, rgba(239, 211, 25, 0.22)),
    linear-gradient(110deg, transparent 0 56%, rgba(239, 211, 25, 0.16) 56% 57%, transparent 57%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(221, 220, 221, 0.08) 48%, transparent 58%),
    radial-gradient(circle at 0 0, rgba(239, 211, 25, 0.18), transparent 12rem),
    radial-gradient(circle at 100% 100%, rgba(212, 139, 0, 0.12), transparent 14rem);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-75%);
  animation: city-sweep 5s ease-in-out infinite;
}

.city-card__frame-corner {
  position: absolute;
  z-index: 2;
  width: 4.6rem;
  height: 4.6rem;
  border-color: rgba(239, 211, 25, 0.32);
  pointer-events: none;
}

.city-card__frame-corner--top-left {
  top: 0.75rem;
  left: 0.75rem;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 0.75rem;
}

.city-card__frame-corner--top-right {
  top: 0.75rem;
  right: 0.75rem;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 0.75rem;
}

.city-card__frame-corner--bottom-left {
  bottom: 0.75rem;
  left: 0.75rem;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 0.75rem;
}

.city-card__frame-corner--bottom-right {
  right: 0.75rem;
  bottom: 0.75rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-bottom-right-radius: 0.75rem;
}

.city-card__shine {
  position: absolute;
  right: 5%;
  top: 18%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(239, 211, 25, 0.18), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  animation: city-glow 3.6s ease-in-out infinite alternate;
}

.city-card__content,
.city-card__button,
.city-card__actions {
  position: relative;
  z-index: 1;
}

.city-card__content {
  max-width: 30rem;
}

.city-card__art {
  position: absolute;
  right: clamp(1.2rem, 7vw, 7rem);
  bottom: -2.6rem;
  width: clamp(13rem, 28vw, 23rem);
  height: clamp(13rem, 28vw, 23rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 211, 25, 0.2);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 211, 25, 0.08), rgba(221, 220, 221, 0.04) 42%, transparent 66%);
  box-shadow: 0 0 50px rgba(239, 211, 25, 0.08);
  animation: city-orb 4s ease-in-out infinite alternate;
}

.city-card__art img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(239, 211, 25, 0.16));
  animation: city-logo-float 3.4s ease-in-out infinite alternate;
}

.city-card__title-row {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.city-card__logo {
  position: relative;
  z-index: 1;
  width: clamp(5.2rem, 8vw, 7.2rem);
  height: clamp(3.2rem, 5.6vw, 5rem);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(239, 211, 25, 0.12));
}

.city-card__label {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: #efd319;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.city-card__text h3 {
  margin: 0;
  color: #dddcdd;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.city-card__text p {
  max-width: 27rem;
  margin: 1.3rem 0 0;
  color: rgba(221, 220, 221, 0.76);
  font-size: clamp(0.76rem, 0.95vw, 0.88rem);
  font-weight: 550;
  line-height: 1.65;
}

.city-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: clamp(1.7rem, 4vw, 3rem);
}

.city-card__players {
  min-width: 8.8rem;
  display: inline-flex;
  justify-content: center;
  padding: 0.42rem 0.8rem;
  color: rgba(221, 220, 221, 0.58);
  border: 2px solid rgba(221, 220, 221, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.city-card:hover .city-card__players {
  color: #dddcdd;
  border-color: rgba(239, 211, 25, 0.45);
  box-shadow: 0 0 22px rgba(239, 211, 25, 0.08);
}

.city-card__button {
  min-width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(221, 220, 221, 0.64);
  background: transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.city-card__button:hover {
  color: #efd319;
  filter: none;
  transform: translateX(3px);
}

@keyframes city-sweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-75%);
  }

  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(75%);
  }
}

@keyframes city-glow {
  from {
    opacity: 0.55;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes city-orb {
  from {
    box-shadow: 0 0 42px rgba(239, 211, 25, 0.07);
    transform: translateY(0);
  }

  to {
    box-shadow: 0 0 70px rgba(239, 211, 25, 0.15);
    transform: translateY(-6px);
  }
}

@keyframes city-logo-float {
  from {
    filter: drop-shadow(0 0 18px rgba(239, 211, 25, 0.14));
    transform: translateY(0) rotate(-1deg);
  }

  to {
    filter: drop-shadow(0 0 30px rgba(239, 211, 25, 0.25));
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes cardSweep {
  0% {
    transform: translateX(-120%) rotate(8deg);
  }
}

.cities-controls {
  width: min(70rem, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem auto 0;
}

.cities-control {
  width: 4.5rem;
  height: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  color: #efd319;
  border: 1px solid rgba(239, 211, 25, 0.22);
  border-radius: 999px;
  background: rgba(221, 220, 221, 0.035);
  font-weight: 900;
}

.cities-progress {
  width: 7rem;
  height: 0.32rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(221, 220, 221, 0.08);
}

.cities-progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: #efd319;
  animation: cities-progress 2.8s ease-in-out infinite alternate;
}

@keyframes cities-progress {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(140%);
  }
}

.contact-banner {
  position: relative;
  width: min(76rem, calc(100% - clamp(2rem, 4vw, 4rem)));
  min-height: 6.8rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0 auto 1rem;
  padding: clamp(1rem, 1.7vw, 1.35rem) clamp(1.3rem, 3vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(221, 220, 221, 0.055);
  border-radius: 0.35rem;
  background:
    radial-gradient(circle at 18% 50%, rgba(212, 139, 0, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 50%, rgba(239, 211, 25, 0.12), transparent 18rem),
    linear-gradient(90deg, rgba(221, 220, 221, 0.03), rgba(8, 5, 1, 0.74) 34%, rgba(8, 5, 1, 0.72) 68%, rgba(221, 220, 221, 0.025)),
    #080501;
  box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, 0.32);
}

.contact-banner::before,
.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-banner::before {
  background:
    linear-gradient(90deg, rgba(8, 5, 1, 0.18), rgba(8, 5, 1, 0.86) 42%, rgba(8, 5, 1, 0.72) 58%, rgba(8, 5, 1, 0.14)),
    radial-gradient(circle at left center, rgba(212, 139, 0, 0.12), transparent 20rem);
}

.contact-banner::after {
  border-top: 1px solid rgba(239, 211, 25, 0.1);
  background:
    linear-gradient(110deg, transparent 0 14%, rgba(221, 220, 221, 0.035) 14% 15%, transparent 15%),
    linear-gradient(250deg, transparent 0 16%, rgba(221, 220, 221, 0.03) 16% 17%, transparent 17%);
  opacity: 0.7;
}

.contact-banner__icon,
.contact-banner__content,
.contact-banner__button {
  position: relative;
  z-index: 1;
}

.contact-banner__icon {
  width: clamp(2.4rem, 4vw, 3.4rem);
  height: clamp(2.4rem, 4vw, 3.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #efd319;
  filter: drop-shadow(0 0 22px rgba(239, 211, 25, 0.16));
}

.contact-banner__icon svg {
  width: 100%;
  height: 100%;
}

.contact-banner__content {
  max-width: 45rem;
}

.contact-banner__eyebrow {
  display: inline-flex;
  margin-bottom: 0.38rem;
  color: #efd319;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-banner__content h2 {
  margin: 0;
  color: #dddcdd;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact-banner__content p {
  max-width: 34rem;
  margin: 0.5rem 0 0;
  color: rgba(221, 220, 221, 0.68);
  font-size: clamp(0.74rem, 0.95vw, 0.86rem);
  font-weight: 500;
  line-height: 1.55;
}

.contact-banner__button {
  min-width: min(16rem, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.25rem;
  color: #080501;
  background: linear-gradient(135deg, #efd319, #dba401 55%, #d48b00);
  border-radius: 0.28rem;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(239, 211, 25, 0.12),
    0 1rem 2.8rem rgba(212, 139, 0, 0.18);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.contact-banner__button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  width: 100%;
  padding: clamp(3.4rem, 6vw, 5.2rem) clamp(1.5rem, 7vw, 9rem) 1.3rem;
  overflow: hidden;
  border-top: 1px solid rgba(221, 220, 221, 0.06);
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 211, 25, 0.09), transparent 24rem),
    radial-gradient(circle at 82% 0%, rgba(212, 139, 0, 0.09), transparent 28rem),
    linear-gradient(180deg, rgba(221, 220, 221, 0.022), rgba(8, 5, 1, 0.98));
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(42rem, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 211, 25, 0.48), transparent);
  transform: translateX(-50%);
}

.site-footer::after {
  content: "RISEGROUP";
  position: absolute;
  right: -1.2rem;
  bottom: -1.9rem;
  color: rgba(221, 220, 221, 0.025);
  font-size: clamp(4.8rem, 13vw, 11rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  width: min(76rem, 100%);
  display: grid;
  grid-template-columns: minmax(16rem, 1.35fr) minmax(8rem, 0.7fr) minmax(14rem, 1fr) minmax(10rem, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0 auto clamp(2.4rem, 4vw, 3.2rem);
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.footer-logo {
  width: clamp(8rem, 13vw, 12rem);
  height: clamp(3.2rem, 5vw, 4.8rem);
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 24px rgba(239, 211, 25, 0.16));
}

.footer-brand p {
  max-width: 24rem;
  margin: 0;
  color: rgba(221, 220, 221, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
}

.footer-copy {
  position: relative;
  z-index: 1;
  width: min(76rem, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(221, 220, 221, 0.07);
}

.footer-copy p {
  margin: 0;
}

.footer-copy p {
  color: rgba(221, 220, 221, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.footer-links,
.footer-contact,
.footer-social {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-links span,
.footer-contact span,
.footer-social span {
  margin-bottom: 0.25rem;
  color: #efd319;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact strong,
.footer-contact a {
  color: rgba(221, 220, 221, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links a,
.footer-contact a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #efd319;
  transform: translateX(3px);
}

.footer-contact strong {
  max-width: 15rem;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.footer-contact a {
  color: #efd319;
}

.footer-social div {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.footer-social-link {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(221, 220, 221, 0.78);
  background: rgba(221, 220, 221, 0.055);
  border: 1px solid rgba(221, 220, 221, 0.07);
  border-radius: 999px;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-social-link:hover {
  color: #080501;
  background: #efd319;
  border-color: #efd319;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 900px) {
  .navbar {
    padding-block: 0.7rem;
  }

  .navbar__inner {
    grid-template-columns: 1fr auto;
  }

  .navbar__links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-top: 0.35rem;
    scrollbar-width: none;
  }

  .navbar__links::-webkit-scrollbar {
    display: none;
  }

  .navbar__connect {
    padding: 0.5rem 0.8rem;
  }

  .page {
    align-items: stretch;
  }

  .hero {
    min-height: 38rem;
    padding-top: 3.5rem;
  }

  .hero__title {
    line-height: 1.08;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
  }

  .services-visual {
    min-height: 24rem;
    order: 2;
  }

  .services-list {
    order: 1;
  }

  .contact-banner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .city-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }

  .city-card__content {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .city-card__button {
    width: 100%;
  }

  .cities-arrow {
    top: auto;
    bottom: -2.6rem;
    width: 3.2rem;
    height: 2.2rem;
  }

  .cities-arrow--previous {
    left: calc(50% - 6rem);
  }

  .cities-arrow--next {
    right: calc(50% - 6rem);
  }

  .city-card__actions {
    align-items: stretch;
  }

  .city-card__actions span {
    text-align: left;
  }

  .contact-banner__button {
    width: 100%;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-social div {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  html,
  body,
  #root {
    overflow-x: hidden;
    background-attachment: scroll;
  }

  body::before {
    background-size: 3.2rem 3.2rem;
    opacity: 0.55;
  }

  .navbar {
    padding: 0.55rem 0.85rem;
  }

  .navbar__inner {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }

  .navbar__brand img {
    width: clamp(5.7rem, 29vw, 7.2rem);
    height: 2.35rem;
  }

  .navbar__connect {
    padding: 0.48rem 0.74rem;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .navbar__links {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.1rem;
  }

  .navbar__link {
    flex: 0 0 auto;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 3.1rem 1rem 3.6rem;
  }

  .hero__content {
    width: min(100%, 24rem);
  }

  .hero__logo {
    width: min(82vw, 18rem);
    height: auto;
    max-height: 7.2rem;
    margin-bottom: 1.25rem;
  }

  .hero__title {
    font-size: clamp(1.78rem, 9.2vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .hero__description {
    max-width: 21rem;
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .services-section,
  .cities-section {
    width: 100%;
    padding-inline: 1rem;
  }

  .services-section {
    padding-top: 3.2rem;
    padding-bottom: 3rem;
  }

  .services-section__intro {
    margin-bottom: 2rem;
  }

  .services-section__intro h2,
  .cities-heading h2 {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
  }

  .services-section__intro p {
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .services-visual {
    min-height: 18rem;
    transform: scale(0.96);
    transform-origin: center top;
  }

  .services-item {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .services-item__index {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
  }

  .services-item p {
    font-size: 0.82rem;
    line-height: 1.66;
  }

  .cities-section {
    padding-top: 3.4rem;
  }

  .cities-frame {
    margin-top: 1.8rem;
  }

  .cities-carousel {
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .city-card {
    width: min(100%, 22rem);
    padding: 1.15rem;
    border-radius: 1.15rem;
  }

  .city-card__title-row {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .city-card__logo {
    width: clamp(4.4rem, 26vw, 5.8rem);
    height: clamp(2.9rem, 16vw, 4rem);
  }

  .city-card__text h3 {
    font-size: clamp(1.15rem, 7vw, 1.55rem);
    line-height: 1.04;
  }

  .city-card__text p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .city-card__art {
    min-height: 8rem;
  }

  .cities-controls {
    margin-top: 3.2rem;
  }

  .contact-banner {
    width: calc(100% - 2rem);
    margin-inline: auto;
    padding: 1.2rem;
    border-radius: 1.1rem;
  }

  .contact-banner__content h2 {
    font-size: clamp(1.25rem, 8vw, 1.85rem);
    line-height: 1.02;
  }

  .site-footer {
    padding: 2.6rem 1rem 1.2rem;
  }

  .footer-main {
    gap: 1.8rem;
    margin-bottom: 2rem;
  }

  .footer-logo {
    width: min(64vw, 11rem);
    height: auto;
  }

  .footer-brand p {
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .footer-contact strong {
    max-width: 18rem;
    font-size: 1.12rem;
  }

  .footer-copy {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .navbar__inner {
    gap: 0.55rem;
  }

  .navbar__brand img {
    width: 5.25rem;
  }

  .navbar__connect {
    padding-inline: 0.62rem;
  }

  .hero__logo {
    width: min(86vw, 16rem);
  }

  .hero__title {
    font-size: clamp(1.58rem, 9.4vw, 2.2rem);
  }

  .city-card {
    padding: 1rem;
  }
}
