.page--game-creators {
  background: radial-gradient(circle at top left, rgba(147, 197, 253, 0.15), transparent 60%),
    radial-gradient(circle at bottom right, rgba(167, 243, 208, 0.15), transparent 55%),
    linear-gradient(180deg, #fafbff 0%, #f0f4fc 100%);
  color: #1e293b;
  min-height: 100vh;
  position: relative;
}

.page--game-creators main,
.page--game-creators .page-header,
.page--game-creators .page-footer {
  position: relative;
  z-index: 1;
}

.background-canvas {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.background-bubble {
  position: absolute;
  display: block;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.4;
  animation: float-bubble 16s linear infinite;
}

.background-bubble--1 {
  top: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.6), rgba(147, 197, 253, 0));
}

.background-bubble--2 {
  top: 20%;
  right: -140px;
  background: radial-gradient(circle, rgba(251, 207, 232, 0.6), rgba(251, 207, 232, 0));
  animation-delay: -4s;
}

.background-bubble--3 {
  bottom: 5%;
  left: 15%;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.6), rgba(167, 243, 208, 0));
  animation-delay: -8s;
}

.background-bubble--4 {
  top: 35%;
  left: 25%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.5), rgba(196, 181, 253, 0));
  animation-delay: -10s;
}

.background-bubble--5 {
  bottom: -120px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 202, 202, 0.5), rgba(254, 202, 202, 0));
  animation-delay: -2s;
}

.background-bubble--6 {
  top: -160px;
  right: 35%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.5), rgba(186, 230, 253, 0));
  animation-delay: -12s;
}

@keyframes float-bubble {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(20px, -30px, 0) scale(1.08);
    opacity: 0.8;
  }
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.page-header__brand {
  display: inline;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e293b;
  text-decoration: none;
}

.page-header__brand:hover {
  text-decoration: underline;
}

.hero {
  padding: 140px 0 0px;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.hero__content {
  flex: 1 1 560px;
}

.hero__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 58px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

.mobile-br {
  display: none;
}

.hero__media {
  flex: 0 0 360px;
}

.hero__media img {
  width: 100%;
  opacity: 0.85;
  transition: opacity var(--transition-default);
}

.hero__media img:hover {
  opacity: 1;
}

.hero__message {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  text-align: center;
}

.hero__message-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #0f172a;
}

.hero__message-body {
  display: grid;
  gap: 8px;
  font-size: 17px;
  color: #475569;
}

.hero__actions {
  margin-top: 100px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #2563eb;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(6px);
  transition: transform var(--transition-default), box-shadow var(--transition-default), background var(--transition-default), border-color var(--transition-default);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.45);
  text-decoration: none;
}

.button--primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.button--primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.button--outline {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(129, 140, 248, 0.95));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
}

.button--outline:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 1), rgba(129, 140, 248, 1));
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.4);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
  color: #0f172a;
}

.segments {
  padding: 40px 0;
}

.segments__grid {
  display: grid;
  gap: 64px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(28px);
  box-shadow: 0 24px 72px rgba(100, 116, 139, 0.12);
}

.feature-card--reverse {
  direction: rtl;
}

.feature-card--reverse > * {
  direction: ltr;
}

.feature-card__image {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(129, 140, 248, 0.05));
  box-shadow: 0 16px 48px rgba(100, 116, 139, 0.1);
  aspect-ratio: 16 / 10;
}

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

.feature-card__image--platforms {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  min-height: 200px;
  aspect-ratio: 16 / 9;
}

.platform-logos {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
}

.platform-logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.platform-logo:first-child {
  top: 0;
  left: 0;
  width: 60%;
  height: 42%;
}

.platform-logo:last-child {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 42%;
}

.platform-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card__image--diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.95));
}

.partnership-diagram-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.feature-card__content {
  padding: 8px;
}

.feature-card__title {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #0f172a;
  font-weight: 700;
}

.feature-card__body {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
}

.glass-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(100, 116, 139, 0.1);
}

.glass-card--with-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(129, 140, 248, 0.1));
  padding: 16px;
  transition: transform var(--transition-default), background var(--transition-default);
}

.glass-card--with-image:hover .glass-card__image {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(129, 140, 248, 0.15));
}

.glass-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
}

.glass-card__content {
  flex: 1;
}

.glass-card__title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #0f172a;
}

.glass-card__body {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}


.cta--video {
  padding: 0;
}

.cta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.cta__actions {
  margin-top: 32px;
  padding: 0;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: none;
}

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

.cta__description {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
}

.cta__description--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.feature-video {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(26px);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(100, 116, 139, 0.12);
}

.feature-video__inner {
  border-radius: 18px;
  overflow: hidden;
}

.feature-video__player {
  width: 100%;
  border-radius: 16px;
}

.flow {
  padding: 40px 0;
}

.flow__list {
  list-style: none;
  display: grid;
  gap: 24px;
}

.flow-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 24px;
  row-gap: 12px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(100, 116, 139, 0.08);
}

.flow-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  grid-row: 1 / 3;
  align-self: center;
}

.flow-step__content {
  display: contents;
}

.flow-step:nth-child(1) .flow-step__icon {
  background: linear-gradient(135deg, rgba(203, 213, 225, 0.85), rgba(148, 163, 184, 0.85));
  box-shadow: 0 3px 12px rgba(100, 116, 139, 0.12);
}

.flow-step:nth-child(2) .flow-step__icon {
  background: linear-gradient(135deg, rgba(203, 213, 225, 0.85), rgba(148, 163, 184, 0.85));
  box-shadow: 0 3px 12px rgba(100, 116, 139, 0.12);
}

.flow-step:nth-child(3) .flow-step__icon {
  background: linear-gradient(135deg, rgba(203, 213, 225, 0.85), rgba(148, 163, 184, 0.85));
  box-shadow: 0 3px 12px rgba(100, 116, 139, 0.12);
}

.flow-step:nth-child(4) .flow-step__icon {
  background: linear-gradient(135deg, rgba(203, 213, 225, 0.85), rgba(148, 163, 184, 0.85));
  box-shadow: 0 3px 12px rgba(100, 116, 139, 0.12);
}

.flow-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-step__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-bottom: 6px;
}

.flow-step__body {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: 6px;
}

.pricing {
  padding: 80px 0 100px;
}

.pricing__box {
  text-align: center;
  padding: 48px 64px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(147, 197, 253, 0.5);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.15);
  max-width: 600px;
  margin: 0 auto;
}

.pricing__price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.pricing__note {
  font-size: 15px;
  color: #64748b;
}

.cta--final {
  padding-top: 0;
  padding-bottom: 40px;
}

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

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(100, 116, 139, 0.12);
}

.cta-card__body {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.page-footer {
  padding: 40px 0 60px;
  background: rgba(248, 250, 252, 0.95);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(18px);
}

.page-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-footer__brand {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #475569;
  text-transform: uppercase;
}

.page-footer__links {
  display: flex;
  gap: 16px;
}

.page-footer__links a {
  font-size: 14px;
  color: #3b82f6;
}

.page-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.page-footer__copyright {
  font-size: 13px;
  color: #64748b;
}

.page-footer__thanks {
  font-size: 13px;
  color: #64748b;
}

.archive {
  padding: 50px 0 120px;
  color: #1e293b;
}

.archive__header {
  margin-bottom: 40px;
}

.archive__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.archive__description {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 32px;
}

.archive-item {
  margin-bottom: 64px;
}

.archive-item__info {
  padding: 12px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archive-item__game-title {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-align: center;
}

.archive-item__credits {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.archive-item__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.archive-item__person--left {
  justify-self: end;
  flex-direction: row-reverse;
}

.archive-item__person--right {
  justify-self: start;
  flex-direction: row;
}

.archive-item__role-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.15);
  color: #2563eb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.archive-item__name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.archive-item__separator-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}

.archive-item__separator {
  font-size: 18px;
  font-weight: 600;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 96px;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    flex: none;
  }

  .hero__media {
    flex: none;
    width: 320px;
    margin: 0 auto;
  }

  .hero__message {
    margin-top: 56px;
  }

  .hero__actions {
    margin-left: 0;
    margin-right: 0;
    gap: 20px;
  }

  .hero__lead-extra {
    display: none;
  }

  .mobile-br {
    display: inline;
  }

  .segments__grid {
    gap: 40px;
  }

  .feature-card,
  .feature-card--reverse {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 32px;
    direction: ltr;
  }

  .feature-card__title {
    font-size: 22px;
  }

  .feature-card__body {
    font-size: 16px;
  }

  .cta__inner,
  .cta__grid {
    grid-template-columns: 1fr;
  }

  .glass-card,
  .cta-card {
    padding: 32px;
  }

  .flow-step {
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    row-gap: 12px;
  }

  .flow-step__icon {
    width: 56px;
    height: 56px;
  }

  .flow-step__title {
    font-size: 18px;
  }

  .feature-card__image--platforms {
    min-height: auto;
    padding: 20px;
  }

  .platform-logos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: static;
    min-height: auto;
  }

  .platform-logo {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    padding: 20px;
    min-height: 80px;
  }

  .platform-logo img {
    width: auto;
    height: auto;
    max-height: 50px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-header__inner {
    padding: 12px;
  }

  .page-header__brand {
    font-size: 18px;
  }

  .hero {
    padding: 80px 0 72px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__media {
    display: none;
  }

  .hero__actions {
    padding: 24px 20px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    gap: 16px;
  }

  .cta__actions {
    padding: 0;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    gap: 16px;
  }

  .hero__lead-extra {
    display: none;
  }

  .mobile-br {
    display: inline;
  }

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

  .section-title {
    font-size: 26px;
    text-align: center;
  }

  .glass-card__title {
    font-size: 18px;
  }

  .feature-card,
  .feature-card--reverse {
    padding: 28px;
    gap: 24px;
  }

  .feature-card__title {
    font-size: 20px;
  }

  .feature-card__image--platforms {
    padding: 16px;
    min-height: auto;
    aspect-ratio: auto;
  }

  .platform-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: static;
    min-height: auto;
  }

  .platform-logo {
    position: static;
    width: 100% !important;
    height: auto !important;
    padding: 16px;
    min-height: 70px;
  }

  .platform-logo img {
    width: auto;
    height: auto;
    max-height: 45px;
    max-width: 100%;
  }

  .feature-card__image--diagram {
    padding: 16px;
    justify-content: center;
  }

  .partnership-diagram-image {
    max-width: 100%;
  }

  .segments,
  .cta,
  .flow,
  .pricing {
    padding: 60px 0;
  }

  .cta--video {
    padding: 0;
  }

  .cta--final {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .flow-step {
    padding: 24px;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    row-gap: 8px;
  }

  .flow-step__icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .flow-step__title {
    font-size: 17px;
    padding-bottom: 4px;
  }

  .flow-step__body {
    font-size: 14px;
    padding-top: 4px;
  }

  .pricing__box {
    padding: 36px 28px;
  }

  .button {
    width: 100%;
  }

  .page-footer__top {
    flex-direction: column;
    text-align: center;
  }

  .page-footer__bottom {
    text-align: center;
  }

  .archive__header-inner {
    flex-direction: column;
  }

  .archive__header-inner .button {
    width: 100%;
  }

  .archive-item__info {
    padding: 12px;
  }

  .archive-item__credits {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .archive-item__person {
    flex-direction: column;
    gap: 8px;
  }

  .archive-item__person--left,
  .archive-item__person--right {
    justify-self: center;
    flex-direction: column;
  }

  .archive-item__separator-wrapper {
    padding: 0;
  }

  .archive-item__separator {
    transform: rotate(90deg);
  }

  .archive-item__name {
    font-size: 18px;
  }
}
