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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f3f1ff;
  background:
    radial-gradient(circle at top left, rgba(153, 69, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 56, 152, 0.12), transparent 30%),
    linear-gradient(180deg, #0c0b16 0%, #131124 55%, #0d0c18 100%);
  position: relative;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-glow--one {
  top: 80px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(167, 83, 255, 0.18);
}

.page-glow--two {
  right: -80px;
  bottom: 160px;
  width: 320px;
  height: 320px;
  background: rgba(255, 70, 166, 0.15);
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 10, 22, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar__wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  font-size: 15px;
  font-weight: 700;
  color: #e8e4ff;
  opacity: 0.9;
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4fae, #9c6bff);
  transition: width 0.25s ease;
}

.nav a:hover {
  opacity: 1;
  color: #fff;
}

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

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-box {
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-box__btn {
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #f0ebff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-box__btn:hover {
  transform: translateY(-1px);
}

.lang-box__btn.is-active {
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
  color: #fff;
}

.action-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.action-btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn--accent {
  color: #fff;
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
  box-shadow: 0 14px 26px rgba(139, 92, 246, 0.28);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b5cf6, #ff4fae);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(16, 14, 30, 0.98);
  transition: max-height 0.35s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-panel.is-open {
  max-height: 500px;
}

.mobile-panel .container {
  padding-top: 18px;
  padding-bottom: 20px;
}

.mobile-panel__lang {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav__link {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-panel__actions .action-btn {
  width: 100%;
}

/* HERO */
.hero-plinko {
  position: relative;
  z-index: 1;
  padding: 46px 0 20px;
}

.hero-plinko__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.hero-plinko__content,
.hero-plinko__visual {
  min-width: 0;
}

.hero-plinko__content {
  padding: 26px 0 10px;
}

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

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 79, 174, 0.12);
  border: 1px solid rgba(255, 79, 174, 0.24);
  color: #ffd8ee;
  font-size: 13px;
  font-weight: 800;
}

.hero-plinko h1 {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-plinko__text {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #cfc7f3;
}

.hero-plinko__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-cta {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

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

.hero-cta--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.28);
}

.hero-plinko__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.mini-card {
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mini-card span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #c9c0f0;
}

.hero-plinko__visual {
  display: grid;
  gap: 18px;
}

.visual-shell {
  position: relative;
  min-height: 460px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 174, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(28, 24, 49, 0.96), rgba(16, 14, 30, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.visual-shell__image {
  width: 100%;
  height: 100%;
  min-height: 416px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-side-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-side-card span {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}

.hero-side-card ul {
  margin: 0;
  padding-left: 20px;
}

.hero-side-card li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: #d6cdf8;
}

/* STATS */
.stats-strip {
  position: relative;
  z-index: 1;
  padding: 10px 0 30px;
}

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

.stat-box {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a99ed6;
}

.stat-box__value {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}

/* SECTION HEADING */
.section-heading {
  margin-bottom: 28px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: #ddd0ff;
  font-size: 13px;
  font-weight: 800;
}

.section-heading h2, h1 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
}



/* INFO SECTION */
.info-section {
  position: relative;
  z-index: 1;
  padding: 46px 0 20px;
}

.content-layout {
  display: grid;
  gap: 26px;
  align-items: start;
}

.content-main p,
.content-main ul,
.content-main h3,
.content-main blockquote,
.content-main table,
.content-main img {
  margin-top: 0;
}

.content-main h3 {
  margin-bottom: 14px;
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.content-main p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.78;
  color: #d2caef;
}

.content-main strong {
  color: #fff;
}

.content-main em {
  color: #f5c7e2;
}

.content-main ul {
  margin-bottom: 22px;
  padding-left: 24px;
}

.content-main li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.68;
  color: #d2caef;
}

.content-main li::marker {
  color: #ff4fae;
}

.content-main blockquote {
  margin: 26px 0;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 79, 174, 0.18);
  color: #fff;
}

.content-main blockquote p:last-child {
  margin-bottom: 0;
}

.content-main img {
  width: 100%;
  margin: 28px 0;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.content-main table {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 28px;
  border-collapse: collapse;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-main thead {
  background: rgba(255, 79, 174, 0.08);
}

.content-main tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-main tr:last-child {
  border-bottom: 0;
}

.content-main th,
.content-main td {
  min-width: 180px;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.55;
  color: #ece8ff;
}

.content-main th {
  width: 1%;
  white-space: nowrap;
  font-weight: 800;
  color: #fff;
}

/* STEPS */
.steps-section {
  position: relative;
  z-index: 1;
  padding: 42px 0 20px;
}

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

.step-card {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 79, 174, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}

.step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: #d6cef4;
}

/* FAQ */
.faq-block {
  position: relative;
  z-index: 1;
  padding: 26px 0 54px;
}

.faq-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-modern__item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.faq-modern__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 174, 0.24);
}

.faq-modern__item.is-active {
  border-color: rgba(139, 92, 246, 0.34);
}

.faq-modern__question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-modern__question span {
  display: block;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: #fff;
}

.faq-modern__question i {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.faq-modern__question i::before,
.faq-modern__question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-modern__question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-modern__item.is-active .faq-modern__question i {
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
}

.faq-modern__item.is-active .faq-modern__question i::after {
  opacity: 0;
}

.faq-modern__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-modern__answer-inner {
  padding: 0 24px 24px;
}

.faq-modern__answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #d4ccf2;
}

.faq-modern__item.is-active .faq-modern__answer {
  opacity: 1;
}

/* FOOTER */
.footer-dark {
  position: relative;
  z-index: 1;
  padding: 10px 0 28px;
}

.footer-dark .container {
  border-radius: 30px;
  padding-top: 28px;
  padding-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(20, 17, 36, 0.96), rgba(12, 11, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.footer-dark__top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
}

.footer-dark__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-dark__brand p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #c8bfea;
}

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

.footer-dark__col h3 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.footer-dark__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-dark__col li + li {
  margin-top: 10px;
}

.footer-dark__col a,
.footer-dark__col span,
.footer-dark__col p {
  font-size: 15px;
  line-height: 1.65;
  color: #c9c0ec;
}

.footer-dark__col a:hover {
  color: #fff;
}

.footer-dark__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-dark__badges img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-dark__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-dark__bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #a99fd3;
}

.to-top {
  min-width: 74px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4fae, #8b5cf6);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav {
    gap: 22px;
  }

  .hero-plinko h1 {
    font-size: 48px;
  }

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

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

  .footer-dark__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav,
  .topbar__right .lang-box,
  .topbar__right .action-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-plinko__grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-plinko h1 {
    font-size: 40px;
  }

  .visual-shell {
    min-height: auto;
  }

  .visual-shell__image {
    min-height: 320px;
  }

  .footer-dark__nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-dark__col:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 981px) {
  .mobile-panel {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .topbar__wrap {
    min-height: 72px;
  }

  .brand img {
    height: 42px;
  }

  .hero-plinko {
    padding-top: 28px;
  }

  .hero-plinko h1 {
    font-size: 31px;
  }

  .hero-plinko__text,
  .content-main p,
  .content-main li,
  .faq-modern__answer p {
    font-size: 16px;
    line-height: 1.68;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .hero-plinko__actions {
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-plinko__mini {
    flex-direction: column;
  }

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

  .stats-strip__grid,
  .steps-grid,
  .footer-dark__nav {
    grid-template-columns: 1fr;
  }

  .step-card,
  .stat-box {
    border-radius: 18px;
  }

  .content-main h3 {
    font-size: 22px;
  }

  .content-main table th,
  .content-main table td {
    min-width: 150px;
    padding: 14px;
    font-size: 15px;
  }

  .faq-modern__question {
    padding: 18px 16px;
  }

  .faq-modern__question span {
    font-size: 17px;
  }

  .faq-modern__answer-inner {
    padding: 0 16px 18px;
  }

  .footer-dark .container {
    border-radius: 22px;
    padding-top: 20px;
    padding-bottom: 16px;
  }

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

.topbar__wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

@media (max-width: 980px) {
  .nav,
  .topbar__right .lang-box,
  .topbar__right .action-btn {
    display: none;
  }

  .topbar__right {
    display: flex;
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

.content-layout .content-main img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 28px auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.content-layout .content-main p + img,
.content-layout .content-main h3 + img,
.content-layout .content-main ul + img,
.content-layout .content-main table + img,
.content-layout .content-main blockquote + img {
  margin-top: 24px;
}

.content-layout .content-main img + p,
.content-layout .content-main img + h3,
.content-layout .content-main img + ul,
.content-layout .content-main img + table,
.content-layout .content-main img + blockquote {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .content-layout .content-main img {
    max-width: 100%;
    border-radius: 18px;
    margin: 24px auto;
  }
}

@media (max-width: 640px) {
  .content-layout .content-main img {
    border-radius: 14px;
    margin: 20px auto;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.05);
  }
}

.content-layout,
.content-main {
  min-width: 0;
}

.game-embed {
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.game-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 720px;
  border: 0;
  background: #10101a;
}

.content-main iframe {
  max-width: 100%;
}

@media (max-width: 980px) {
  .game-embed iframe {
    height: 620px;
  }
}

@media (max-width: 640px) {
  .game-embed {
    margin: 20px 0;
    border-radius: 16px;
  }

  .game-embed iframe {
    height: 540px;
  }
}

@media (max-width: 420px) {
  .game-embed iframe {
    height: 500px;
  }
}