.gameedu-page {
  --edu-ink: #102033;
  --edu-text: #294057;
  --edu-muted: #607185;
  --edu-night: #07111f;
  --edu-cyan: #14c9f6;
  --edu-blue: #235dff;
  --edu-lime: #b8ff35;
  --edu-yellow: #ffd84d;
  --edu-orange: #ff8a34;
  --edu-purple: #8b5cf6;
  --edu-pink: #ff4fc3;
  --edu-card: rgba(255, 255, 255, 0.9);
  --edu-line: rgba(20, 201, 246, 0.28);
  --edu-shadow: 0 24px 70px rgba(25, 54, 94, 0.16);
  --edu-radius: 28px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 5%, rgba(20, 201, 246, 0.24), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 216, 77, 0.28), transparent 25%),
    radial-gradient(circle at 52% 2%, rgba(139, 92, 246, 0.18), transparent 22%),
    linear-gradient(180deg, #f4fbff 0%, #fff8df 28%, #f4efff 56%, #eefcff 100%);
  color: var(--edu-text);
  overflow-x: hidden;
}

.gameedu-page * {
  box-sizing: border-box;
}

.gameedu-page a {
  color: inherit;
}

.gameedu-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(20, 201, 246, 0.22);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.14);
}

.gameedu-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  text-decoration: none;
}

.gameedu-brand img,
.gameedu-footer img {
  width: 150px;
  height: auto;
  display: block;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.gameedu-brand strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.gameedu-brand small {
  color: #c8e9f6;
  font-size: 0.78rem;
}

.gameedu-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #dcebf5;
  font-size: 0.94rem;
}

.gameedu-nav a,
.gameedu-footer a {
  text-decoration: none;
}

.gameedu-nav a:hover,
.gameedu-footer a:hover {
  color: var(--edu-lime);
}

.gameedu-nav-cta,
.gameedu-button,
.gameedu-form button,
.gameedu-branch-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--edu-lime), #e9ff7d);
  color: #07111f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(102, 175, 18, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gameedu-nav-cta:hover,
.gameedu-button:hover,
.gameedu-form button:hover,
.gameedu-branch-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(20, 201, 246, 0.24);
}

.gameedu-button.secondary {
  background: linear-gradient(135deg, var(--edu-cyan), #8eeeff);
  color: #07111f;
}

.gameedu-button.ghost {
  background: rgba(255, 255, 255, 0.92);
  color: #16283b;
  box-shadow: 0 12px 28px rgba(25, 54, 94, 0.12);
  border: 1px solid rgba(20, 201, 246, 0.25);
}

.gameedu-menu-toggle,
.gameedu-mobile-menu {
  display: none;
}

.gameedu-menu-toggle {
  cursor: pointer;
  border: 1px solid rgba(20, 201, 246, 0.42);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
}

.gameedu-mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #e8f7ff;
  text-decoration: none;
}

.gameedu-mobile-menu a:hover,
.gameedu-mobile-menu a:focus-visible {
  background: rgba(20, 201, 246, 0.12);
  color: #ffffff;
}

.gameedu-hero,
.gameedu-section,
.gameedu-final-cta,
.gameedu-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gameedu-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: 700px;
  padding: clamp(48px, 8vw, 92px) 0 58px;
}

.gameedu-hero::before {
  content: "";
  position: absolute;
  inset: 34px -18px 34px -18px;
  z-index: -1;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 24% 20%, rgba(255, 216, 77, 0.28), transparent 28%),
    radial-gradient(circle at 74% 8%, rgba(255, 79, 195, 0.18), transparent 24%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--edu-shadow);
}

.gameedu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #005b78;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
}

.gameedu-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--edu-lime), var(--edu-cyan));
  box-shadow: 0 0 0 6px rgba(20, 201, 246, 0.12);
}

.gameedu-hero h1 {
  margin: 0;
  color: var(--edu-ink);
  font-size: clamp(3rem, 7.6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.gameedu-lede,
.gameedu-section-head p,
.gameedu-final-cta p {
  color: var(--edu-text);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.gameedu-mini-chips,
.gameedu-actions,
.gameedu-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gameedu-mini-chips {
  margin-top: 22px;
}

.gameedu-mini-chips span,
.gameedu-hero-facts span {
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-weight: 900;
}

.gameedu-mini-chips span {
  color: #07111f;
  background: #ffffff;
  border: 1px solid rgba(20, 201, 246, 0.18);
  box-shadow: 0 10px 22px rgba(25, 54, 94, 0.08);
}

.gameedu-actions {
  margin-top: 28px;
}

.gameedu-hero-facts {
  margin-top: 24px;
}

.gameedu-hero-facts span {
  color: #11243a;
  background: linear-gradient(135deg, rgba(20, 201, 246, 0.13), rgba(184, 255, 53, 0.18));
  border: 1px solid rgba(20, 201, 246, 0.22);
}

.gameedu-hero-media {
  position: relative;
  isolation: isolate;
}

.gameedu-hero-media img,
.gameedu-module-card img,
.gameedu-branch-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #dfefff;
}

.gameedu-hero-media img {
  aspect-ratio: 4 / 5;
  border-radius: 38px;
  border: 8px solid #ffffff;
  box-shadow: 0 34px 80px rgba(10, 43, 77, 0.2);
}

.gameedu-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.9;
}

.gameedu-orbit-one {
  width: 180px;
  height: 180px;
  right: -34px;
  top: -24px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.8), rgba(255, 216, 77, 0));
}

.gameedu-orbit-two {
  width: 230px;
  height: 230px;
  left: -42px;
  bottom: 12%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42), rgba(139, 92, 246, 0));
}

.gameedu-pass-card {
  position: absolute;
  top: 20px;
  left: -18px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #07111f;
  background: linear-gradient(135deg, var(--edu-yellow), #fff1a8);
  box-shadow: 0 18px 40px rgba(211, 139, 13, 0.28);
  transform: rotate(-3deg);
}

.gameedu-pass-card span,
.gameedu-pass-card small {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.gameedu-pass-card strong {
  font-size: 1.35rem;
}

.gameedu-media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 22px;
  padding: 16px;
  color: #ffffff;
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(7, 17, 31, 0.24);
}

.gameedu-media-note strong,
.gameedu-media-note span {
  display: block;
}

.gameedu-media-note span {
  margin-top: 4px;
  color: #d7f4ff;
}

.gameedu-section {
  position: relative;
  padding: clamp(42px, 6.4vw, 76px) clamp(18px, 3vw, 34px);
  margin-top: 26px;
  border-radius: 36px;
  background: var(--edu-card);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--edu-shadow);
  overflow: hidden;
}

.gameedu-section::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  opacity: 0.26;
  background: radial-gradient(circle, var(--edu-cyan), transparent 68%);
  pointer-events: none;
}

.gameedu-summary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(221, 255, 188, 0.76));
}

#activities {
  background: linear-gradient(135deg, rgba(243, 252, 255, 0.94), rgba(245, 235, 255, 0.92));
}

.gameedu-flow {
  background: linear-gradient(135deg, rgba(255, 250, 222, 0.94), rgba(255, 236, 209, 0.9));
}

#branches {
  background: linear-gradient(135deg, rgba(234, 251, 255, 0.94), rgba(232, 255, 240, 0.88));
}

.gameedu-fees {
  background: linear-gradient(135deg, rgba(245, 255, 220, 0.95), rgba(255, 248, 212, 0.92));
}

.gameedu-forms {
  background: linear-gradient(135deg, rgba(244, 240, 255, 0.95), rgba(232, 250, 255, 0.92));
}

.gameedu-section-head {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin-bottom: 26px;
}

.gameedu-section-head h2,
.gameedu-final-cta h2,
.gameedu-sponsor h2 {
  margin: 0;
  color: var(--edu-ink);
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1.04;
}

.gameedu-summary-grid,
.gameedu-audience-grid,
.gameedu-trust-grid,
.gameedu-fee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gameedu-summary-grid article,
.gameedu-audience-grid article,
.gameedu-trust-grid article,
.gameedu-fee-grid article,
.gameedu-form,
.gameedu-faq details {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(20, 201, 246, 0.18);
  border-radius: var(--edu-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(25, 54, 94, 0.1);
}

.gameedu-summary-grid article,
.gameedu-audience-grid article,
.gameedu-trust-grid article,
.gameedu-fee-grid article {
  padding: 22px;
}

.gameedu-summary-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #07111f;
  background: linear-gradient(135deg, var(--edu-lime), var(--edu-yellow));
  font-weight: 950;
  transform: rotate(-4deg);
}

.gameedu-summary-grid article:nth-child(2) span,
.gameedu-summary-grid article:nth-child(5) span {
  background: linear-gradient(135deg, var(--edu-cyan), #98f3ff);
}

.gameedu-summary-grid article:nth-child(3) span,
.gameedu-summary-grid article:nth-child(6) span {
  background: linear-gradient(135deg, #ffc2ec, var(--edu-purple));
  color: #ffffff;
}

.gameedu-summary-grid h3,
.gameedu-audience-grid h3,
.gameedu-trust-grid h3,
.gameedu-fee-grid h3,
.gameedu-form h3 {
  color: var(--edu-ink);
  margin: 14px 0 8px;
}

.gameedu-summary-grid p,
.gameedu-audience-grid p,
.gameedu-trust-grid p,
.gameedu-fee-grid p,
.gameedu-branch-grid p,
.gameedu-faq p,
.gameedu-soft-note,
.gameedu-privacy {
  color: var(--edu-muted);
  line-height: 1.58;
}

.gameedu-module-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gameedu-module-card {
  overflow: hidden;
  border: 1px solid rgba(20, 201, 246, 0.2);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(25, 54, 94, 0.12);
}

.gameedu-module-card img {
  aspect-ratio: 16 / 10;
}

.gameedu-module-card div {
  position: relative;
  padding: 20px;
}

.gameedu-module-card div::before {
  content: "";
  display: block;
  width: 54px;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--edu-cyan), var(--edu-lime));
}

.gameedu-module-card p {
  margin: 0 0 8px;
  color: #006987;
  font-weight: 950;
}

.gameedu-module-card h3 {
  margin: 0 0 8px;
  color: var(--edu-ink);
  font-size: 1.42rem;
}

.gameedu-module-card span {
  color: var(--edu-muted);
  line-height: 1.55;
}

.gameedu-flow-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow;
}

.gameedu-flow-list li {
  counter-increment: flow;
  position: relative;
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(255, 138, 52, 0.22);
  border-radius: var(--edu-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(176, 114, 22, 0.11);
}

.gameedu-flow-list li::before {
  content: counter(flow);
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--edu-orange), var(--edu-yellow));
  color: #07111f;
  font-weight: 950;
  margin-bottom: 16px;
  transform: rotate(-5deg);
}

.gameedu-flow-list strong,
.gameedu-flow-list span {
  display: block;
}

.gameedu-flow-list strong {
  color: var(--edu-ink);
  margin-bottom: 8px;
}

.gameedu-flow-list span {
  color: var(--edu-muted);
  line-height: 1.52;
}

.gameedu-branch-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gameedu-branch-grid article {
  overflow: hidden;
  border: 1px solid rgba(20, 201, 246, 0.2);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(25, 54, 94, 0.12);
}

.gameedu-branch-grid img {
  aspect-ratio: 16 / 11;
}

.gameedu-branch-grid div {
  padding: 20px;
}

.gameedu-branch-grid h3 {
  margin: 0;
  color: var(--edu-ink);
}

.gameedu-branch-grid ul {
  color: var(--edu-text);
  padding-left: 18px;
  line-height: 1.62;
}

.gameedu-branch-grid a {
  width: 100%;
  margin-top: 8px;
}

.gameedu-fee-grid article {
  min-height: 194px;
  border-color: rgba(184, 255, 53, 0.36);
}

.gameedu-fee-grid span {
  color: #006987;
  font-weight: 950;
  text-transform: uppercase;
}

.gameedu-fee-grid strong {
  display: block;
  margin-top: 12px;
  color: #07111f;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
}

.gameedu-soft-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 138, 52, 0.25);
  background: rgba(255, 255, 255, 0.72);
}

.gameedu-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gameedu-form {
  padding: clamp(20px, 3vw, 30px);
}

.gameedu-form label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--edu-ink);
  font-weight: 900;
}

.gameedu-form input,
.gameedu-form select,
.gameedu-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 201, 246, 0.28);
  border-radius: 16px;
  background: #f8fcff;
  color: var(--edu-ink);
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gameedu-form input:focus,
.gameedu-form select:focus,
.gameedu-form textarea:focus {
  border-color: var(--edu-purple);
  outline: 3px solid rgba(139, 92, 246, 0.18);
}

.gameedu-form textarea {
  resize: vertical;
}

.gameedu-check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}

.gameedu-check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.gameedu-form button {
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
  font: inherit;
}

.gameedu-form-status {
  margin: 12px 0 0;
  color: #007a52;
  min-height: 22px;
  font-weight: 800;
}

.gameedu-sponsor,
.gameedu-schools {
  position: relative;
  z-index: 1;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--edu-shadow);
}

.gameedu-sponsor {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, #081627, #12315d 48%, #47237e);
  color: #ffffff;
}

.gameedu-sponsor .gameedu-kicker,
.gameedu-sponsor h2,
.gameedu-sponsor p {
  color: #ffffff;
}

.gameedu-sponsor p {
  max-width: 720px;
  line-height: 1.62;
}

.gameedu-schools {
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(232, 255, 240, 0.94), rgba(255, 255, 255, 0.86));
}

.gameedu-faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.gameedu-faq details {
  padding: 0;
}

.gameedu-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--edu-ink);
  font-weight: 950;
}

.gameedu-faq p {
  margin: 0;
  padding: 0 20px 20px;
}

.gameedu-final-cta {
  margin-top: 40px;
  margin-bottom: 56px;
  padding: clamp(28px, 6vw, 56px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 216, 77, 0.34), transparent 25%),
    linear-gradient(135deg, #07111f, #12315d 52%, #2d1662);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 26px 70px rgba(7, 17, 31, 0.24);
}

.gameedu-final-cta h2,
.gameedu-final-cta p {
  color: #ffffff;
}

.gameedu-final-cta .gameedu-actions {
  justify-content: center;
}

.gameedu-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  padding: 34px clamp(18px, 3vw, 34px) 52px;
  margin-top: 24px;
  border-radius: 32px 32px 0 0;
  background: rgba(7, 17, 31, 0.96);
  color: #d1e9f6;
}

.gameedu-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.gameedu-footer p {
  margin: 0;
  line-height: 1.7;
}

.gameedu-page :focus-visible {
  outline: 3px solid var(--edu-orange);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .gameedu-page *,
  .gameedu-page *::before,
  .gameedu-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .gameedu-nav {
    display: none;
  }

  .gameedu-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gameedu-mobile-menu {
    display: grid;
    gap: 4px;
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 12px;
    border: 1px solid rgba(20, 201, 246, 0.32);
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  }

  .gameedu-mobile-menu[hidden] {
    display: none;
  }

  .gameedu-hero,
  .gameedu-form-grid,
  .gameedu-footer {
    grid-template-columns: 1fr;
  }

  .gameedu-hero {
    min-height: 0;
    padding-top: 38px;
  }

  .gameedu-summary-grid,
  .gameedu-audience-grid,
  .gameedu-trust-grid,
  .gameedu-fee-grid,
  .gameedu-flow-list,
  .gameedu-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gameedu-sponsor {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .gameedu-header {
    padding: 10px 12px;
    gap: 10px;
  }

  .gameedu-brand {
    min-width: 0;
    gap: 8px;
  }

  .gameedu-brand img {
    width: 96px;
  }

  .gameedu-brand small {
    display: none;
  }

  .gameedu-nav-cta {
    display: none;
  }

  .gameedu-hero,
  .gameedu-section,
  .gameedu-final-cta,
  .gameedu-footer {
    width: min(100% - 24px, 1180px);
  }

  .gameedu-hero::before {
    inset: 18px 0 24px 0;
    border-radius: 30px;
  }

  .gameedu-hero h1 {
    font-size: clamp(3rem, 17vw, 4.55rem);
  }

  .gameedu-actions,
  .gameedu-button {
    width: 100%;
  }

  .gameedu-summary-grid,
  .gameedu-module-grid,
  .gameedu-audience-grid,
  .gameedu-trust-grid,
  .gameedu-fee-grid,
  .gameedu-flow-list,
  .gameedu-branch-grid {
    grid-template-columns: 1fr;
  }

  .gameedu-section {
    padding: 34px 14px;
    border-radius: 28px;
  }

  .gameedu-hero-media img {
    aspect-ratio: 4 / 4.7;
    border-radius: 28px;
    border-width: 6px;
  }

  .gameedu-pass-card {
    left: 12px;
    top: 12px;
    min-width: 160px;
    transform: none;
  }

  .gameedu-orbit {
    display: none;
  }

  .gameedu-media-note {
    position: static;
    margin-top: 12px;
    background: rgba(7, 17, 31, 0.95);
  }

  .gameedu-module-card img,
  .gameedu-branch-grid img {
    aspect-ratio: 4 / 3;
  }

  .gameedu-form {
    padding: 18px;
  }

  .gameedu-footer nav {
    flex-direction: column;
  }
}
