@font-face {
  font-family: "OpenSans";
  src: url(fonts/OpenSans-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "OpenSans";
}

body {
  height: 100%;
  margin: 0;
  background: radial-gradient(circle at top, #201010 0px, #050505 520px);
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 30px 0;
}

main {
  padding-top: 50px;
}

.padding__main {
  padding: 70px 0 50px 0;
  color: var(--color-text-primary);
}

.padding__main a {
  font-size: 24px;
  color: var(--color-accent-red);
}



/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 50px 100px;
  width: 100%;
  position: absolute;
  z-index: 99;

  display: none;
  flex-direction: column;

  background-color: #000;
}

.nav__burger .nav__list {
  margin-left: auto;
  font-size: 30px;
  color: #fff;
}

.active {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
  right: 0;
}

.burger {
  cursor: pointer;
  display: none;
  color: #fff;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 23px;
  z-index: 100;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
}

.burger::before {
  top: 0px;
  box-shadow: 0 11px 0 #fff;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked+.burger::before {
  top: 12px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 transparent;
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked+.burger::after {
  bottom: 9px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

/* end burger */

.heading {
  margin: 0;
  margin-bottom: 16px;
  font-size: 30px;
}

.text {
  margin: 0;
  margin-bottom: 12px;
  font-size: 16px;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


/* header */
header {
  width: 100%;
  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background-color: var(--color-bg);
  opacity: .9;
  border-bottom: 1px solid#201010;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 25px;
  color: var(--color-accent-red);

  transition: color 0.3s ease;
}

.header__logo:hover {
  color: var(--color-accent-soft);
}

.header__block {
  display: flex;
  gap: 10px;
  align-items: center;


}

.header_lang {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-accent-red);
  padding: 3px 20px;
  background: linear-gradient(90deg, rgba(224, 34, 34, 0.2), rgba(255, 92, 46, 0.1));
  color: var(--color-text-primary);
  font-size: 14px;
}

.nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nav__list {
  font-size: 18px;
  color: var(--color-text-primary);
  transition: .3s ease;
}

.nav__list:hover {
  color: var(--color-accent-soft);
}

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #141414;
  --color-accent-red: #e02222;
  --color-accent-orange: #ff5c2e;
  --color-accent-soft: #ff7c4b;
  --color-text-primary: #ffffff;
  --color-text-muted: #9e9e9e;
  --color-border-subtle: #1a1a1a;
  --color-tag-bg: #181818;
  --color-tag-border: #272727;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --transition-base: 0.3s ease;
}

/* hero */

.hero {
  background: radial-gradient(circle at top, #201010 0px, #050505 520px);
  color: var(--color-text-primary);
}

.hero__container {
  display: block;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0px, 1.4fr) minmax(0px, 1fr);
  gap: 40px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero__eyebrow {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(20, 20, 20, 0.9);
}

.hero__age-pill {
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-accent-red);
  padding: 3px 9px;
  background: linear-gradient(90deg, rgba(224, 34, 34, 0.2), rgba(255, 92, 46, 0.1));
}

.hero__age-pill-text {
  font-size: 13px;
  text-transform: uppercase;
}

.hero__heading {
  max-width: 580px;
  margin-bottom: 16px;
}

.hero__text {
  max-width: 600px;
  color: var(--color-text-muted);
}

.hero__disclaimer {
  max-width: 640px;
  color: var(--color-text-muted);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.hero__tag {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-tag-border);
  background-color: var(--color-tag-bg);
  transition: var(--transition-base);
}

.hero__tag--safe {
  border-color: rgba(255, 255, 255, 0.08);
}

.hero__tag--age {
  border-color: rgba(224, 34, 34, 0.5);
}

.hero__tag--noreal {
  border-color: rgba(255, 124, 75, 0.5);
}

.hero__tag--nobrands {
  border-color: rgba(158, 158, 158, 0.6);
}

.hero__tag--active {
  border-color: var(--color-accent-orange);
  background: radial-gradient(circle at top, rgba(255, 92, 46, 0.4), rgba(20, 20, 20, 0.9));
  color: var(--color-text-primary);
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin-top: 8px;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-accent-red), var(--color-accent-orange));
  color: var(--color-text-primary);
  transition: var(--transition-base);
}

.hero__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-soft));
}

.hero__btn-primary--glow {
  border-color: var(--color-accent-orange);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.9), rgba(40, 16, 10, 0.9));
  min-width: 260px;
}

.hero__meta-label {
  font-size: 13px;
  margin: 0;
  color: var(--color-text-muted);
}

.hero__stats-row {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stat-number {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.hero__stat-caption {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0px;
}

.hero__legal-strip {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  padding: 10px 14px;
  background: rgba(10, 10, 10, 0.9);
}

.hero__legal-text {
  font-size: 13px;
  margin: 0;
  color: var(--color-text-muted);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero__img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  object-fit: cover;
  height: 220px;
}

.hero__visual-text {
  max-width: 380px;
}

.hero__visual-caption {
  color: var(--color-text-muted);
}

.hero__visual-points {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__visual-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero__visual-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  margin-top: 6px;
  background: var(--color-border-subtle);
}

.hero__visual-dot--accent {
  background: var(--color-accent-orange);
}

.hero__visual-item {
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero__age-pill--pulse {
  animation: heroAgePulse 1.2s ease-in-out infinite alternate;
}

@keyframes heroAgePulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

@media (max-width: 960px) {
  .hero__layout {
    grid-template-columns: minmax(0px, 1fr);
    gap: 32px;
  }

  .hero__visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero__heading {
    font-size: 24px;
  }

  .hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__meta {
    min-width: 0;
  }

  .hero__stats-row {
    flex-direction: column;
  }

  .hero__img {
    height: 200px;
  }
}

/* games */

.games {
  color: var(--color-text-primary);
}

.games__container {
  display: block;
}

.games__intro {
  max-width: 720px;
}

.games__heading {
  margin-bottom: 16px;
}

.games__text {
  color: var(--color-text-muted);
}

.games__meta-row {
  margin-top: 16px;
  max-width: 760px;
}

.games__meta-text {
  font-size: 14px;
  color: var(--color-text-muted);
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.games__card {
  display: flex;
  flex-direction: column;

  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(180deg, #141414, #090909);
  padding: 16px 16px 18px 16px;
  transition: var(--transition-base);
}

.games__card:hover {
  border-color: var(--color-accent-soft);
}

.games__card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.games__card__eyebrow {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.games__card__pill {
  font-size: 12px;
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  border: 1px solid var(--color-accent-red);
  background: rgba(224, 34, 34, 0.15);
  text-transform: uppercase;
}

.games__card__img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  object-fit: cover;
  margin-top: 8px;
  margin-bottom: 10px;
  border: 1px solid var(--color-border-subtle);
}

.games__card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.games__card__meta {
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.games__meta-item {
  display: flex;
  flex-direction: column;
}

.games__meta-label {
  font-size: 12px;
  color: var(--color-text-muted);
}

.games__meta-value {
  font-size: 14px;
  font-weight: 600;
}

.games__card__actions {
  margin-top: 14px;
}

.games__card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-accent-red), var(--color-accent-orange));
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.games__card__btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-soft));
}

.games__card__note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
  margin-top: 8px;

}

.games__card--active {
  border-color: var(--color-accent-orange);
}

/* games responsive */

@media (max-width: 960px) {
  .games__card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .games__heading {
    font-size: 24px;
  }
}

/* how */

.how {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
}

.how__container {
  display: block;
}

.how__layout {
  display: grid;
  grid-template-columns: minmax(0px, 1.4fr) minmax(0px, 1fr);
  gap: 40px;
}

.how__col-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how__heading {
  margin-bottom: 10px;
}

.how__text {
  color: var(--color-text-muted);
  max-width: 640px;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how__step {
  cursor: pointer;
  display: grid;
  grid-template-columns: 40px minmax(0px, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.94), rgba(40, 16, 10, 0.9));
  transition: var(--transition-base);
}

.how__step-index {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how__step-number {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 92, 46, 0.5);
  background: radial-gradient(circle at top, rgba(255, 92, 46, 0.35), rgba(10, 10, 10, 0.9));
}

.how__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how__step-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.how__step-title {
  font-size: 15px;
  color: var(--color-text-primary);
}

.how__step-text {
  font-size: 14px;
  margin: 0;
  color: var(--color-text-muted);
}

.how__step-icon {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top, rgba(255, 92, 46, 0.18), rgba(8, 8, 8, 1));
}

.how__step--active {
  border-color: var(--color-accent-orange);
  background: linear-gradient(90deg, rgba(255, 92, 46, 0.14), rgba(20, 20, 20, 0.98));
}

.how__col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how__panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: #131313;
  padding: 14px;
}

.how__panel--checklist {
  background: radial-gradient(circle at top, rgba(255, 92, 46, 0.22), #101010);
}

.how__panel-label {
  font-size: 14px;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.how__panel-label--highlight {
  color: var(--color-accent-orange);
}

.how__panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.how__panel-item {
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  padding: 8px 10px;
  background: rgba(8, 8, 8, 0.92);
}

.how__panel-metric-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.how__panel-icon {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top, rgba(255, 92, 46, 0.18), rgba(8, 8, 8, 1));
}

.how__panel-metric {
  font-size: 16px;
  font-weight: 600;
}

.how__panel-caption {
  font-size: 13px;
  color: var(--color-text-muted);
}

.how__progress {
  margin-top: 12px;
}

.how__progress-bar {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(40, 40, 40, 1);
  overflow: hidden;
}

.how__progress-fill {
  width: 0;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-accent-red), var(--color-accent-orange));
  transition: width var(--transition-base);
}

.how__progress-text {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.how__panel--not {
  background: #101010;
}

.how__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how__list-item {
  display: grid;
  grid-template-columns: 10px minmax(0px, 1fr);
  gap: 8px;
  align-items: flex-start;
}

.how__list-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  background: var(--color-border-subtle);
}

.how__list-text {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* how responsive */

@media (max-width: 960px) {
  .how__layout {
    grid-template-columns: minmax(0px, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .how__heading {
    font-size: 24px;
  }
}

/* faq */

.faq {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
}

.faq__container {
  display: block;
}

.faq__layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__intro {
  max-width: 760px;
}

.faq__heading {
  margin-bottom: 10px;
}

.faq__text {
  color: var(--color-text-muted);
}

.faq__content {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr);
  gap: 18px;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(180deg, #151515, #090909);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq__item--open {
  border-color: var(--color-accent-orange);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
}

.faq__question-text {
  text-align: left;
  font-size: 14px;
  color: var(--color-text-primary);
}

.faq__question-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transform: rotate(0deg);
  transition: var(--transition-base);
}

.faq__item--open .faq__question-icon {
  transform: rotate(45deg);
  border-color: var(--color-accent-orange);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding-left: 12px;
  padding-right: 12px;
  transition: max-height var(--transition-base);
}

.faq__item--open .faq__answer {
  max-height: 260px;
}

.faq__answer-text {
  font-size: 13px;
  color: var(--color-text-muted);
  padding-bottom: 10px;
}

/* faq responsive */

@media (max-width: 960px) {
  .faq__content {
    grid-template-columns: minmax(0px, 1fr);
  }
}

@media (max-width: 640px) {
  .faq__heading {
    font-size: 24px;
  }
}

/* notice */

.notice {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
}

.notice__container {
  display: block;
}

.notice__layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice__intro {
  max-width: 760px;
}

.notice__heading {
  margin-bottom: 10px;
}

.notice__text {
  color: var(--color-text-muted);
}

.notice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.notice__item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(180deg, #171717, #090909);
  padding: 12px 14px;
}

.notice__item-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.notice__item-text {
  font-size: 13px;
  color: var(--color-text-muted);
}

.notice__strip {
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  background: #101010;
  padding: 10px 14px;
}

.notice__strip-text {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* notice responsive */

@media (max-width: 640px) {
  .notice__heading {
    font-size: 24px;
  }
}

/* games-page-hero */

.games-page-hero {
  padding: 0;
  color: var(--color-text-primary);
}

.games-page-hero__container {
  display: block;
}

.games-page-hero__heading {
  margin-bottom: 10px;
}

.games-page-hero__text {
  color: var(--color-text-muted);
  max-width: 720px;
}

/* games-age */

.games-age {
  padding: 0;
  padding-top: 20px;
  padding-bottom: 30px;
  color: var(--color-text-primary);
}

.games-age__container {
  border: 1px solid var(--color-accent-red);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.games-age__heading {
  margin-bottom: 0px;
}

.games-age__text {
  color: var(--color-text-muted);
  max-width: 760px;
  font-size: 14px;
}

/* game-header */

.game-header {
  color: var(--color-text-primary);
}

.game-header__container {
  display: block;
}

.game-header__heading {
  margin-bottom: 10px;
}

.game-header__text {
  max-width: 760px;
  color: var(--color-text-muted);
}

.game-header__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.game-header__label {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(15, 15, 15, 0.96);
}

.game-header__label--mode {
  border-color: rgba(255, 255, 255, 0.08);
}

.game-header__label--age {
  border-color: rgba(224, 34, 34, 0.6);
}

.game-header__label--noreal {
  border-color: rgba(255, 92, 46, 0.6);
}

/* game-embed */

.game-embed {
  color: var(--color-text-primary);
  padding: 0;
}

.game-embed__container {
  display: block;
}

.game-embed__heading {
  margin-bottom: 10px;
}

.game-embed__text {
  max-width: 760px;
  color: var(--color-text-muted);
}

.game-embed__frame-wrap {
  margin: 0;
  border-radius: 20px;
  border: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top, rgba(255, 92, 46, 0.22), #050505);
  overflow: hidden;
}

.game-embed__frame-wrap iframe {
  margin: 0;
}

.game-embed__frame {
  width: 100%;
  height: 651px;
  border: 0;
  display: block;
}

.game-embed__notice {
  max-width: 780px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* game-embed responsive */

@media (max-width: 640px) {
  .game-header__heading {
    font-size: 24px;
  }

  .game-embed__heading {
    font-size: 22px;
  }

  .game-embed__frame {
    height: 420px;
  }
}

/* footer */

.footer {
  padding-top: 10px;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  border-top: 1px solid var(--color-border-subtle);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__heading {
  margin-bottom: 6px;
}

.footer__text {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__text--contact {
  max-width: 340px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__list-item {
  font-size: 13px;
}

.footer__link {
  font-size: 13px;
  color: var(--color-text-primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: 0.3s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-orange);
  transition: 0.3s ease;
}

.footer__link:hover {
  color: var(--color-accent-orange);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__link--inline {
  display: inline-block;
}

.footer__note {
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 10px;
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 10px;
  background-color: #000;
  border: 1px solid var(--color-border-subtle);
  transition: 0.3s ease;
}

.footer__logo-link2 {
  background-color: #fff;
}

.footer__logo-link:hover {
  border-color: var(--color-accent-orange);
}

.footer__logo-img {
  width: 130px;
  height: 35px;
  object-fit: contain;
}

.footer__bottom-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__bottom-text {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* footer responsive */

@media (max-width: 640px) {
  .footer__heading {
    font-size: 18px;
  }

  .footer__logo-img {
    width: 105px;
    height: 26px;
  }
}

/* contact */

.contact {
  background-color: #070910;
}

.contact__container {
  display: flex;
  justify-content: center;
}

.contact__content {
  max-width: 760px;
  width: 100%;
  margin: 40px auto 60px;
}

.contact__heading {
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact__text {
  color: #c7c7d5;
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: center;
}

.contact__panel {
  margin: 32px auto 0;
  padding: 32px 28px 30px;
  border-radius: 16px;
  border: 1px solid #ff6a2a;
  background: radial-gradient(circle at top, #1c1d2a 0, #11121c 52%, #0a0b13 100%);
  box-sizing: border-box;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-size: 14px;
  text-transform: uppercase;
  color: #f2f2ff;
}

.contact__input,
.contact__textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ff4040;
  background-color: #181924;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  transition: 0.3s ease;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #777895;
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: #ff852f;
  background-color: #1f2030;
}

.contact__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact__row--policy {
  margin-top: 4px;
}

.contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact__checkbox-text {
  font-size: 13px;
  line-height: 1.4;
  color: #d0d0e2;
}

.contact__policy-link {
  color: #ff8f3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__policy-link:hover {
  color: #ffb35c;
}

.contact__actions {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.contact__btn {
  padding: 10px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff512f 0, #ff8c3a 100%);
  color: #ffffff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.contact__hint {
  font-size: 12px;
  color: #9b9cbc;
  max-width: 520px;
}

/* contact-info */

.contact-info {
  background-color: #05060c;
}

.contact-info__container {
  max-width: 900px;
  margin: 0 auto 60px;
}

.contact-info__heading {
  text-align: center;
  color: #ffffff;
  margin: 40px auto 14px;
}

.contact-info__text {
  color: #c7c7d5;
  max-width: 760px;
  margin: 0 auto 10px;
  text-align: center;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.contact-info__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #ff6a2a;
  background: #121321;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.3s ease;
}

.contact-info__card:hover {
  border-color: #ff8f3a;
  transform: translateY(-2px);
}

.contact-info__label {
  font-size: 13px;
  text-transform: uppercase;
  color: #f2f2ff;
}

.contact-info__value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.contact-info__note {
  font-size: 13px;
  color: #a7a8c5;
}

/* contact responsive */

@media (max-width: 600px) {
  .contact__panel {
    padding: 24px 18px 24px;
  }

  .contact__content {
    margin: 24px auto 40px;
  }

  .contact-info__heading {
    margin-top: 32px;
  }

  .contact-info__container {
    margin-bottom: 40px;
  }
}