:root {
  --aa-play-blue: #1473b7;
  --aa-play-blue-2: #0c5f96;
  --aa-play-blue-dark: #0b2946;
  --aa-play-yellow: #fbbb13;
  --aa-play-cream: #fff7df;
  --aa-play-cream-2: #fffdf4;
  --aa-play-ink: #111827;
  --aa-play-muted: #42526a;
  --aa-play-coral: #ff6b6b;
  --aa-play-mint: #80e0b1;
  --aa-play-sky: #72d7ff;
  --aa-play-lilac: #a996ff;
  --aa-play-card: #ffffff;
  --aa-play-hero-paper: #fff6dc;
  --aa-play-hero-paper-2: #fff0c8;
  --aa-play-image-paper: #fffefa;
  --aa-play-image-paper-2: #fff8eb;
  --aa-play-line: 4px solid var(--aa-play-ink);
  --aa-play-shadow: 10px 10px 0 var(--aa-play-ink);
  --aa-play-shadow-sm: 6px 6px 0 var(--aa-play-ink);
  --aa-play-max: 1200px;
}

html.aa-play-dark {
  --aa-play-cream: #09131f;
  --aa-play-cream-2: #0e1b2a;
  --aa-play-ink: #f7fbff;
  --aa-play-muted: #c8d5e3;
  --aa-play-card: #132235;
  --aa-play-line: 4px solid #f7fbff;
  --aa-play-shadow: 10px 10px 0 #020711;
  --aa-play-shadow-sm: 6px 6px 0 #020711;
}

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

html {
  scroll-behavior: smooth;
}

.aa-play-v2-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 5px;
  background: transparent;
  pointer-events: none;
}

.aa-play-v2-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--aa-play-coral), var(--aa-play-yellow), var(--aa-play-sky));
  transform: scaleX(var(--aa-play-progress, 0));
  transform-origin: left center;
  transition: transform 120ms linear;
}

body.aa-play-v2-body {
  margin: 0;
  color: var(--aa-play-ink);
  background:
    radial-gradient(circle at 18px 18px, rgba(20, 115, 183, 0.11) 1px, transparent 1.2px),
    linear-gradient(180deg, var(--aa-play-cream) 0%, var(--aa-play-cream-2) 100%);
  background-size: 30px 30px, auto;
  font-family: "Thmanyah Sans", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

html.aa-play-dark body.aa-play-v2-body {
  background:
    radial-gradient(circle at 18px 18px, rgba(114, 215, 255, 0.1) 1px, transparent 1.2px),
    linear-gradient(180deg, #09131f 0%, #0e1b2a 100%);
}

body.aa-play-v2-body,
.aa-play-v2-page {
  direction: ltr;
  text-align: left;
}

.aa-play-v2-page {
  overflow-x: hidden;
}

.aa-play-v2-nav,
.aa-play-v2-container,
.aa-play-v2-footer {
  direction: rtl;
  text-align: right;
}

html[lang="en"] .aa-play-v2-nav,
html[lang="en"] .aa-play-v2-container,
html[lang="en"] .aa-play-v2-footer {
  direction: ltr;
  text-align: left;
}

.lang-en {
  display: none !important;
}

html[lang="en"] .lang-ar {
  display: none !important;
}

html[lang="en"] .lang-en {
  display: inline !important;
}

html[lang="en"] .aa-play-v2-lang-block.lang-en {
  display: block !important;
}

html[lang="en"] .aa-play-v2-lang-grid.lang-en {
  display: grid !important;
}

.aa-play-v2-lang-block.lang-ar {
  display: block;
}

.aa-play-v2-mobile-break {
  display: none;
}

.aa-play-v2-title-mobile {
  display: none !important;
}

.aa-play-v2-container {
  width: min(var(--aa-play-max), calc(100% - 40px));
  margin: 0 auto;
}

.aa-play-v2-nav {
  position: sticky;
  top: 12px;
  z-index: 80;
  width: min(var(--aa-play-max), calc(100% - 40px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: var(--aa-play-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--aa-play-card) 92%, transparent);
  box-shadow: var(--aa-play-shadow-sm);
  backdrop-filter: blur(14px);
}

.aa-play-v2-logo {
  display: block;
  width: 124px;
  height: auto;
}

.aa-play-v2-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.aa-play-v2-links a {
  position: relative;
  color: var(--aa-play-ink);
  text-decoration: none;
  font-weight: 1000;
  font-size: 0.96rem;
  white-space: nowrap;
}

.aa-play-v2-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 5px;
  border-radius: 999px;
  background: var(--aa-play-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.aa-play-v2-links a:hover {
  color: var(--aa-play-blue);
}

.aa-play-v2-links a:hover::after,
.aa-play-v2-links a.is-active::after {
  transform: scaleX(1);
}

.aa-play-v2-links a.is-active {
  color: var(--aa-play-blue);
}

html.aa-play-dark .aa-play-v2-links a:hover {
  color: var(--aa-play-yellow);
}

html.aa-play-dark .aa-play-v2-links a.is-active {
  color: var(--aa-play-yellow);
}

.aa-play-v2-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aa-play-v2-mini-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 3px solid var(--aa-play-ink);
  border-radius: 999px;
  background: var(--aa-play-card);
}

.aa-play-v2-toggle-btn {
  border: 0;
  min-width: 38px;
  height: 32px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--aa-play-ink);
  background: transparent;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.aa-play-v2-toggle-btn.is-active,
.aa-play-v2-toggle-btn[aria-pressed="true"] {
  background: var(--aa-play-yellow);
  color: #111827;
}

.aa-play-v2-mode {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 3px solid var(--aa-play-ink);
  border-radius: 50%;
  background: var(--aa-play-sky);
  color: #111827;
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
  font-weight: 1000;
  cursor: pointer;
}

.aa-play-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: var(--aa-play-line);
  border-radius: 999px;
  background: var(--aa-play-card);
  color: var(--aa-play-ink);
  box-shadow: var(--aa-play-shadow-sm);
  text-decoration: none;
  font-weight: 1000;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.aa-play-v2-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--aa-play-ink) 80%, transparent);
  text-decoration: none;
}

.aa-play-v2-btn:active,
.aa-play-v2-btn.aa-play-v2-is-pressed,
.aa-play-v2-toggle-btn:active,
.aa-play-v2-mode:active {
  transform: translate(5px, 5px);
  box-shadow: 1px 1px 0 color-mix(in srgb, var(--aa-play-ink) 80%, transparent);
}

.aa-play-v2-btn-primary {
  background: var(--aa-play-coral);
  color: #fff;
}

.aa-play-v2-btn-yellow {
  background: var(--aa-play-yellow);
  color: #111827;
}

.aa-play-v2-section {
  position: relative;
  padding: 86px 0;
}

.aa-play-v2-hero {
  min-height: auto;
  padding: 48px 0 72px;
  display: grid;
  align-items: center;
}

.aa-play-v2-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.aa-play-v2-hero-copy {
  position: relative;
  max-width: 620px;
  margin: 0;
  text-align: right;
  z-index: 2;
}

html[lang="en"] .aa-play-v2-hero-copy {
  text-align: left;
}

.aa-play-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 18px;
  border: 3px solid var(--aa-play-ink);
  border-radius: 999px;
  background: var(--aa-play-mint);
  color: #111827;
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
  font-weight: 1000;
  transform: rotate(-1deg);
}

html[lang="en"] .aa-play-v2-pill {
  margin-right: 0;
  margin-left: 0;
}

.aa-play-v2-title {
  margin: 0;
  color: var(--aa-play-ink);
  font-family: "Thmanyah Serif Display", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 4.05rem;
  line-height: 1.14;
  font-weight: 1000;
  overflow-wrap: anywhere;
}

.aa-play-v2-title-desktop {
  max-width: 12ch;
}

.aa-play-v2-sticker {
  display: inline-block;
  padding: 0.04em 0.22em 0.12em;
  border: var(--aa-play-line);
  border-radius: 18px;
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--aa-play-ink) 95%, transparent);
  color: #111827;
  line-height: 1.05;
}

.aa-play-v2-sticker-blue {
  background: var(--aa-play-sky);
  transform: rotate(-2deg);
}

.aa-play-v2-sticker-yellow {
  background: var(--aa-play-yellow);
  transform: rotate(2deg);
}

.aa-play-v2-sticker-coral {
  background: var(--aa-play-coral);
  color: #fff;
}

.aa-play-v2-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--aa-play-muted);
  font-size: 1.18rem;
  font-weight: 800;
}

.aa-play-v2-hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.aa-play-v2-hero-art-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  transform: perspective(900px) rotateX(var(--aa-play-tilt-x, 0deg)) rotateY(var(--aa-play-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  animation: aa-play-v2-float 5.8s ease-in-out infinite;
}

.aa-play-v2-hero-art {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  border: var(--aa-play-line);
  border-radius: 28px;
  box-shadow: var(--aa-play-shadow);
  background:
    radial-gradient(circle at 18px 18px, rgba(251, 187, 19, 0.22) 1px, transparent 1.5px),
    linear-gradient(145deg, var(--aa-play-hero-paper), var(--aa-play-hero-paper-2));
  background-size: 26px 26px, auto;
  transform: translateZ(0);
}

.aa-play-v2-float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 3px solid var(--aa-play-ink);
  border-radius: 999px;
  background: var(--aa-play-card);
  color: var(--aa-play-ink);
  box-shadow: var(--aa-play-shadow-sm);
  font-size: 0.9rem;
  font-weight: 1000;
  transform: translateZ(36px) rotate(var(--aa-play-chip-rotate, 0deg));
  animation: aa-play-v2-bob 4.5s ease-in-out infinite;
}

.aa-play-v2-float-chip-one {
  --aa-play-chip-rotate: 2deg;
  top: 22px;
  right: -18px;
  background: var(--aa-play-yellow);
  color: #111827;
}

.aa-play-v2-float-chip-two {
  --aa-play-chip-rotate: -2deg;
  left: -16px;
  bottom: 28px;
  background: var(--aa-play-mint);
  color: #111827;
  animation-delay: 600ms;
}

.aa-play-v2-proof-row {
  grid-column: 1 / -1;
  width: 100%;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.aa-play-v2-proof {
  min-height: 86px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 3px solid var(--aa-play-ink);
  border-radius: 18px;
  background: var(--aa-play-card);
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
  font-weight: 1000;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.aa-play-v2-proof:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 8px 8px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
}

.aa-play-v2-proof img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.aa-play-v2-section-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.aa-play-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--aa-play-blue);
  font-weight: 1000;
}

html.aa-play-dark .aa-play-v2-eyebrow {
  color: var(--aa-play-yellow);
}

.aa-play-v2-section-head h2 {
  margin: 0;
  font-family: "Thmanyah Serif Display", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 3.25rem;
  line-height: 1.24;
  font-weight: 1000;
}

.aa-play-v2-section-head p {
  margin: 16px auto 0;
  color: var(--aa-play-muted);
  font-weight: 800;
  font-size: 1.06rem;
}

.aa-play-v2-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.aa-play-v2-showcase-media {
  position: relative;
}

.aa-play-v2-visual {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  border: var(--aa-play-line);
  border-radius: 24px;
  box-shadow: var(--aa-play-shadow);
  background:
    linear-gradient(145deg, var(--aa-play-image-paper), var(--aa-play-image-paper-2));
  background-size: auto;
}

.aa-play-v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aa-play-v2-feature-card {
  min-height: 218px;
  padding: 20px;
  border: var(--aa-play-line);
  border-radius: 20px;
  background: var(--aa-play-card);
  box-shadow: var(--aa-play-shadow-sm);
}

.aa-play-v2-feature-card:nth-child(1) {
  background: var(--aa-play-yellow);
  color: #111827;
  transform: rotate(1.5deg);
}

.aa-play-v2-feature-card:nth-child(2) {
  background: var(--aa-play-sky);
  color: #111827;
  transform: rotate(-1deg);
  margin-top: 18px;
}

.aa-play-v2-feature-card:nth-child(3) {
  background: var(--aa-play-mint);
  color: #111827;
  transform: rotate(1deg);
}

.aa-play-v2-feature-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
}

.aa-play-v2-feature-card h3,
.aa-play-v2-program-card h3,
.aa-play-v2-teacher-card h3,
.aa-play-v2-step h3,
.aa-play-v2-course-banner h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.35;
  font-weight: 1000;
}

.aa-play-v2-feature-card p,
.aa-play-v2-program-card p,
.aa-play-v2-teacher-card p,
.aa-play-v2-step p,
.aa-play-v2-course-banner p {
  margin: 0;
  color: color-mix(in srgb, currentColor 82%, transparent);
  font-weight: 750;
}

.aa-play-v2-band {
  border-top: 4px solid var(--aa-play-ink);
  border-bottom: 4px solid var(--aa-play-ink);
  background:
    linear-gradient(135deg, rgba(114, 215, 255, 0.22), rgba(251, 187, 19, 0.18)),
    var(--aa-play-cream-2);
}

html.aa-play-dark .aa-play-v2-band {
  background:
    linear-gradient(135deg, rgba(20, 115, 183, 0.25), rgba(251, 187, 19, 0.08)),
    var(--aa-play-cream-2);
}

.aa-play-v2-program-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.aa-play-v2-program-visuals {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.aa-play-v2-program-visual-card {
  padding: 14px;
  border: var(--aa-play-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, var(--aa-play-image-paper), var(--aa-play-image-paper-2));
  background-size: auto;
  box-shadow: var(--aa-play-shadow-sm);
}

.aa-play-v2-program-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.aa-play-v2-program-list {
  display: grid;
  gap: 18px;
}

.aa-play-v2-program-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: var(--aa-play-line);
  border-radius: 22px;
  background: var(--aa-play-card);
  box-shadow: var(--aa-play-shadow-sm);
}

.aa-play-v2-program-card:nth-child(2n) {
  transform: rotate(-0.5deg);
}

.aa-play-v2-program-card:nth-child(2n+1) {
  transform: rotate(0.45deg);
}

.aa-play-v2-program-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 3px solid var(--aa-play-ink);
  border-radius: 20px;
  background: var(--aa-play-yellow);
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
}

.aa-play-v2-program-icon img {
  width: 44px;
  height: 44px;
}

.aa-play-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.aa-play-v2-tag {
  padding: 5px 10px;
  border: 2px solid var(--aa-play-ink);
  border-radius: 999px;
  background: color-mix(in srgb, var(--aa-play-yellow) 34%, var(--aa-play-card));
  color: var(--aa-play-ink);
  font-weight: 1000;
  font-size: 0.78rem;
}

.aa-play-v2-program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aa-play-blue);
  font-weight: 1000;
  text-decoration: none;
}

html.aa-play-dark .aa-play-v2-program-link {
  color: var(--aa-play-yellow);
}

.aa-play-v2-teachers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.aa-play-v2-teachers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aa-play-v2-teacher-card {
  min-height: 168px;
  padding: 22px;
  border: var(--aa-play-line);
  border-radius: 20px;
  background: var(--aa-play-card);
  box-shadow: var(--aa-play-shadow-sm);
}

.aa-play-v2-teacher-card:nth-child(1) {
  background: var(--aa-play-yellow);
  color: #111827;
}

.aa-play-v2-teacher-card:nth-child(2) {
  background: var(--aa-play-sky);
  color: #111827;
}

.aa-play-v2-teacher-card:nth-child(3) {
  background: var(--aa-play-mint);
  color: #111827;
}

.aa-play-v2-teacher-card:nth-child(4) {
  background: var(--aa-play-coral);
  color: #fff;
}

.aa-play-v2-subject {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 1000;
}

.aa-play-v2-course-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 34px;
  border: var(--aa-play-line);
  border-radius: 28px;
  background: var(--aa-play-blue);
  color: #fff;
  box-shadow: var(--aa-play-shadow);
}

.aa-play-v2-course-banner h3 {
  font-size: 2.75rem;
}

.aa-play-v2-steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.aa-play-v2-steps {
  display: grid;
  gap: 16px;
}

.aa-play-v2-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border: var(--aa-play-line);
  border-radius: 20px;
  background: var(--aa-play-card);
  box-shadow: var(--aa-play-shadow-sm);
}

.aa-play-v2-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 3px solid var(--aa-play-ink);
  border-radius: 18px;
  background: var(--aa-play-coral);
  color: #fff;
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
  font-weight: 1000;
  font-size: 1.4rem;
}

.aa-play-v2-video-card {
  position: relative;
  padding: 14px;
  border: var(--aa-play-line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, var(--aa-play-image-paper), var(--aa-play-image-paper-2));
  background-size: auto;
  box-shadow: var(--aa-play-shadow);
}

.aa-play-v2-video-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.aa-play-v2-play {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 4px solid #111827;
  border-radius: 50%;
  background: var(--aa-play-yellow);
  color: #111827;
  box-shadow: 5px 5px 0 #111827;
  font-size: 1.6rem;
}

html[lang="en"] .aa-play-v2-play {
  right: auto;
  left: 32px;
}

.aa-play-v2-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.aa-play-v2-partner {
  min-height: 122px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: var(--aa-play-line);
  border-radius: 20px;
  background: var(--aa-play-card);
  box-shadow: var(--aa-play-shadow-sm);
  font-weight: 1000;
}

.aa-play-v2-partner:nth-child(1) {
  background: var(--aa-play-yellow);
  color: #111827;
}

.aa-play-v2-partner:nth-child(2) {
  background: var(--aa-play-sky);
  color: #111827;
}

.aa-play-v2-partner:nth-child(3) {
  background: var(--aa-play-mint);
  color: #111827;
}

.aa-play-v2-partner:nth-child(4) {
  background: var(--aa-play-coral);
  color: #fff;
}

.aa-play-v2-feature-card,
.aa-play-v2-program-card,
.aa-play-v2-program-visual-card,
.aa-play-v2-teacher-card,
.aa-play-v2-course-banner,
.aa-play-v2-step,
.aa-play-v2-video-card,
.aa-play-v2-partner {
  transition: transform 190ms ease, box-shadow 190ms ease, filter 190ms ease;
}

.aa-play-v2-feature-card:hover,
.aa-play-v2-program-card:hover,
.aa-play-v2-program-visual-card:hover,
.aa-play-v2-teacher-card:hover,
.aa-play-v2-step:hover,
.aa-play-v2-partner:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 10px 10px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
}

.aa-play-v2-program-card:nth-child(2n):hover,
.aa-play-v2-teacher-card:nth-child(2n):hover,
.aa-play-v2-partner:nth-child(2n):hover {
  transform: translateY(-5px) rotate(0.4deg);
}

.aa-play-v2-program-link {
  transition: transform 150ms ease, color 150ms ease;
}

.aa-play-v2-program-link:hover {
  transform: translateX(-4px);
}

html[lang="en"] .aa-play-v2-program-link:hover {
  transform: translateX(4px);
}

.aa-play-v2-footer {
  padding: 58px 0 26px;
  border-top: 4px solid var(--aa-play-ink);
  background: #09131f;
  color: #fff;
}

.aa-play-v2-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 0.8fr;
  gap: 28px;
}

.aa-play-v2-footer-logo {
  width: 146px;
  height: auto;
  margin-bottom: 18px;
}

.aa-play-v2-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.aa-play-v2-footer h3 {
  margin: 0 0 14px;
  color: var(--aa-play-yellow);
}

.aa-play-v2-footer a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 8px 0;
  font-weight: 850;
}

.aa-play-v2-footer a:hover {
  color: var(--aa-play-yellow);
}

.aa-play-v2-footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.aa-play-v2-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

html.aa-play-v2-animate .aa-play-v2-reveal {
  opacity: 0;
  transform: translateY(18px);
}

html.aa-play-v2-animate .aa-play-v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aa-play-v2-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes aa-play-v2-bob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .aa-play-v2-reveal,
  html.aa-play-v2-animate .aa-play-v2-reveal {
    opacity: 1;
    transform: none;
  }

  .aa-play-v2-hero-art-wrap,
  .aa-play-v2-float-chip {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .aa-play-v2-title {
    font-size: 4rem;
  }

  .aa-play-v2-hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .aa-play-v2-hero-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  html[lang="en"] .aa-play-v2-hero-copy {
    text-align: center;
  }

  .aa-play-v2-pill {
    margin: 0 auto 22px;
  }

  .aa-play-v2-title-desktop {
    max-width: none;
  }

  .aa-play-v2-lede {
    max-width: 840px;
    margin: 26px auto 0;
  }

  .aa-play-v2-hero-actions {
    justify-content: center;
  }

  .aa-play-v2-hero-art-wrap {
    width: min(980px, 100%);
    margin: 0 auto;
  }

  .aa-play-v2-section-head h2 {
    font-size: 2.85rem;
  }

  .aa-play-v2-course-banner h3 {
    font-size: 2.45rem;
  }

  .aa-play-v2-program-layout,
  .aa-play-v2-teachers-layout,
  .aa-play-v2-steps-layout,
  .aa-play-v2-showcase {
    grid-template-columns: 1fr;
  }

  .aa-play-v2-program-visuals {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .aa-play-v2-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .aa-play-v2-title {
    font-size: 3rem;
  }

  .aa-play-v2-section-head h2 {
    font-size: 2.35rem;
  }

  .aa-play-v2-course-banner h3 {
    font-size: 2.1rem;
  }

  .aa-play-v2-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .aa-play-v2-links {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .aa-play-v2-proof-row,
  .aa-play-v2-feature-grid,
  .aa-play-v2-teachers-grid,
  .aa-play-v2-partners {
    grid-template-columns: 1fr;
  }

  .aa-play-v2-feature-card,
  .aa-play-v2-feature-card:nth-child(2),
  .aa-play-v2-program-card {
    transform: none;
    margin-top: 0;
  }

  .aa-play-v2-course-banner {
    grid-template-columns: 1fr;
  }

  .aa-play-v2-float-chip {
    display: none;
  }

  .aa-play-v2-title-desktop {
    display: none !important;
  }

  .aa-play-v2-title-mobile.lang-ar {
    display: flex !important;
  }

  .aa-play-v2-title-mobile {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .aa-play-v2-title-mobile > span {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  html[lang="en"] .aa-play-v2-title-mobile.lang-ar {
    display: none !important;
  }

  html[lang="en"] .aa-play-v2-title-mobile.lang-en {
    display: flex !important;
  }
}

@media (max-width: 620px) {
  .aa-play-v2-title {
    font-size: 1.76rem;
    line-height: 1.28;
  }

  .aa-play-v2-section-head h2 {
    font-size: 2rem;
  }

  .aa-play-v2-course-banner h3 {
    font-size: 1.85rem;
  }

  .aa-play-v2-container,
  .aa-play-v2-nav {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .aa-play-v2-nav {
    margin-top: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    top: 8px;
    gap: 10px;
    padding: 10px 12px;
    direction: ltr;
  }

  .aa-play-v2-nav > a:first-child {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }

  .aa-play-v2-logo {
    width: 92px;
    height: auto;
  }

  .aa-play-v2-actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: auto;
    justify-content: flex-start;
    direction: ltr;
  }

  .aa-play-v2-mode {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }

  .aa-play-v2-mini-toggle {
    padding: 4px;
    gap: 4px;
  }

  .aa-play-v2-toggle-btn {
    min-width: 36px;
    height: 34px;
    padding: 0 7px;
  }

  .aa-play-v2-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow-x: visible;
    padding-bottom: 0;
    direction: rtl;
  }

  html[lang="en"] .aa-play-v2-links {
    direction: ltr;
  }

  .aa-play-v2-links a {
    font-size: 0.84rem;
  }

  .aa-play-v2-hero-copy {
    max-width: 100%;
  }

  .aa-play-v2-title-mobile {
    gap: 6px;
  }

  .aa-play-v2-sticker {
    max-width: 100%;
  }

  .aa-play-v2-mobile-break {
    display: block;
  }

  .aa-play-v2-section {
    padding: 62px 0;
  }

  .aa-play-v2-hero {
    min-height: auto;
    padding: 40px 0 62px;
  }

  .aa-play-v2-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aa-play-v2-btn {
    width: 100%;
  }

  .aa-play-v2-hero-art,
  .aa-play-v2-visual,
  .aa-play-v2-video-card,
  .aa-play-v2-course-banner {
    box-shadow: 6px 6px 0 color-mix(in srgb, var(--aa-play-ink) 100%, transparent);
  }

  .aa-play-v2-program-visuals,
  .aa-play-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .aa-play-v2-program-card,
  .aa-play-v2-step {
    grid-template-columns: 1fr;
  }
}
