/* ============================================================
   compact-750756-chrome.css
   Orion Play mobile-first design system.
   All custom classes use the frame07564- prefix.
   Palette: #2E4057 | #800080 | #B22222 | #FFB6C1 | #F08080
   Deep tones act as backgrounds, light tones as text/accents.
   ============================================================ */

:root {
  --frame07564-bg: #2e4057;
  --frame07564-bg-deep: #182634;
  --frame07564-bg-card: #355069;
  --frame07564-bg-soft: #3d5a75;
  --frame07564-purple: #800080;
  --frame07564-purple-soft: #a233a2;
  --frame07564-red: #b22222;
  --frame07564-red-soft: #d84545;
  --frame07564-pink: #ffb6c1;
  --frame07564-coral: #f08080;
  --frame07564-ivory: #fff5f8;
  --frame07564-muted: #d7c6d7;
  --frame07564-line: rgba(255, 182, 193, 0.18);
  --frame07564-line-strong: rgba(255, 182, 193, 0.32);
  --frame07564-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  --frame07564-radius: 14px;
  --frame07564-radius-sm: 9px;
  --frame07564-header-h: 60px;
  --frame07564-nav-h: 66px;
  --frame07564-max: 430px;
  --frame07564-grad-brand: linear-gradient(135deg, #800080 0%, #b22222 100%);
  --frame07564-grad-warm: linear-gradient(135deg, #f08080 0%, #ffb6c1 100%);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, "Trebuchet MS", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--frame07564-ivory);
  background: var(--frame07564-bg);
  background-image:
    radial-gradient(circle at 12% -8%, rgba(128, 0, 128, 0.32), transparent 55%),
    radial-gradient(circle at 88% 0%, rgba(178, 34, 34, 0.28), transparent 50%),
    linear-gradient(180deg, #213447 0%, #2e4057 38%, #1d2c3b 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--frame07564-coral);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--frame07564-pink);
  outline-offset: 2px;
  border-radius: 6px;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin: 0 0 0.85em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

li {
  margin-bottom: 0.4em;
}

/* ---------- Mobile canvas frame ---------- */
.frame07564-shell {
  width: 100%;
  max-width: var(--frame07564-max);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: rgba(24, 38, 52, 0.5);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
}

.frame07564-main {
  padding: calc(var(--frame07564-header-h) + 12px) 14px calc(var(--frame07564-nav-h) + 40px);
}

/* ---------- Header (edge-aligned functional bar) ---------- */
.frame07564-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--frame07564-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  max-width: var(--frame07564-max);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(24, 38, 52, 0.97), rgba(46, 64, 87, 0.92));
  border-bottom: 1px solid var(--frame07564-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.frame07564-header--scrolled {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(20, 32, 44, 0.98), rgba(34, 48, 66, 0.96));
}

.frame07564-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.frame07564-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: radial-gradient(circle, #fff 0%, var(--frame07564-pink) 100%);
  box-shadow: 0 0 0 2px var(--frame07564-purple), 0 4px 10px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.frame07564-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.frame07564-brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--frame07564-ivory);
  white-space: nowrap;
}

.frame07564-brand-tag {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame07564-pink);
  font-weight: 600;
}

.frame07564-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.frame07564-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 999px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  color: #fff;
  font-family: inherit;
}

.frame07564-btn:active {
  transform: scale(0.96);
}

.frame07564-btn--login {
  background: linear-gradient(135deg, var(--frame07564-purple), var(--frame07564-purple-soft));
  box-shadow: 0 4px 12px rgba(128, 0, 128, 0.35);
}

.frame07564-btn--register {
  background: linear-gradient(135deg, var(--frame07564-red), var(--frame07564-red-soft));
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.4);
}

.frame07564-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--frame07564-line);
  color: var(--frame07564-pink);
}

.frame07564-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--frame07564-line);
  color: var(--frame07564-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease;
  padding: 0;
}

.frame07564-icon-btn:active {
  transform: scale(0.92);
}

.frame07564-icon-btn--active {
  background: var(--frame07564-grad-brand);
  color: #fff;
}

.frame07564-icon-btn svg {
  width: 22px;
  height: 22px;
}

/* ---------- Expanded navigation drawer ---------- */
.frame07564-menu {
  position: fixed;
  top: var(--frame07564-header-h);
  left: 0;
  right: 0;
  z-index: 55;
  max-width: var(--frame07564-max);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(24, 38, 52, 0.99), rgba(40, 56, 76, 0.98));
  border-bottom: 1px solid var(--frame07564-line);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.32s ease;
  padding: 0 14px;
}

.frame07564-menu--open {
  max-height: 540px;
  padding: 12px 14px 16px;
}

.frame07564-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.frame07564-menu-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: var(--frame07564-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--frame07564-line);
  color: var(--frame07564-ivory);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.frame07564-menu-link:active {
  transform: scale(0.97);
}

.frame07564-menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--frame07564-line-strong);
}

.frame07564-menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--frame07564-grad-warm);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(240, 128, 128, 0.25);
}

.frame07564-menu-foot {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--frame07564-radius-sm);
  background: rgba(128, 0, 128, 0.18);
  border: 1px dashed var(--frame07564-line-strong);
  font-size: 12px;
  color: var(--frame07564-pink);
  line-height: 1.5;
}

/* ---------- Hero ---------- */
.frame07564-hero {
  margin: 4px 0 18px;
  padding: 18px 16px 20px;
  border-radius: var(--frame07564-radius);
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 128, 128, 0.32), transparent 55%),
    linear-gradient(135deg, rgba(128, 0, 128, 0.45), rgba(178, 34, 34, 0.35));
  border: 1px solid var(--frame07564-line-strong);
  position: relative;
  overflow: hidden;
}

.frame07564-hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.35), transparent 65%);
  border-radius: 50%;
}

.frame07564-hero h1 {
  font-size: 26px;
  letter-spacing: 0.3px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.35em;
}

.frame07564-hero-sub {
  margin: 0 0 14px;
  color: var(--frame07564-pink);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.4px;
}

.frame07564-hero-text {
  margin: 0 0 14px;
  color: rgba(255, 245, 248, 0.92);
  font-size: 14px;
}

.frame07564-hero-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.frame07564-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--frame07564-line);
  font-size: 11.5px;
  color: var(--frame07564-pink);
  font-weight: 600;
}

/* ---------- Carousel ---------- */
.frame07564-carousel {
  position: relative;
  margin: 0 0 18px;
  border-radius: var(--frame07564-radius);
  overflow: hidden;
  box-shadow: var(--frame07564-shadow);
  border: 1px solid var(--frame07564-line);
}

.frame07564-carousel-viewport {
  overflow: hidden;
  border-radius: var(--frame07564-radius);
}

.frame07564-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.frame07564-slide {
  flex: 0 0 100%;
  position: relative;
}

.frame07564-slide-link {
  display: block;
  position: relative;
  cursor: pointer;
}

.frame07564-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--frame07564-radius);
}

.frame07564-slide-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.frame07564-slide-caption span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--frame07564-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.frame07564-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(24, 38, 52, 0.78);
  border: 1px solid var(--frame07564-line-strong);
  color: var(--frame07564-ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}

.frame07564-carousel-arrow--prev {
  left: 8px;
}

.frame07564-carousel-arrow--next {
  right: 8px;
}

.frame07564-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

.frame07564-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.22s ease, background 0.22s ease;
}

.frame07564-dot--active {
  width: 20px;
  border-radius: 999px;
  background: var(--frame07564-grad-warm);
}

/* ---------- Section heading ---------- */
.frame07564-section {
  margin: 0 0 20px;
}

.frame07564-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: var(--frame07564-radius-sm);
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.32), rgba(178, 34, 34, 0.22));
  border: 1px solid var(--frame07564-line);
}

.frame07564-section-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--frame07564-grad-brand);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(128, 0, 128, 0.35);
}

.frame07564-section-mark svg {
  width: 18px;
  height: 18px;
}

.frame07564-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.2px;
  flex: 1;
}

.frame07564-section-note {
  font-size: 11px;
  color: var(--frame07564-pink);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Game grids ---------- */
.frame07564-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.frame07564-grid--cards {
  gap: 10px;
}

.frame07564-game {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frame07564-line);
  border-radius: var(--frame07564-radius-sm);
  padding: 4px 4px 8px;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
  color: var(--frame07564-ivory);
  overflow: hidden;
  position: relative;
}

.frame07564-game:active {
  transform: scale(0.95);
}

.frame07564-game:hover {
  border-color: var(--frame07564-line-strong);
  background: rgba(255, 255, 255, 0.09);
}

.frame07564-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #0f1c28;
}

.frame07564-game-name {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--frame07564-ivory);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 26px;
  word-break: break-word;
}

.frame07564-game::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent var(--frame07564-coral) transparent transparent;
  border-top-right-radius: var(--frame07564-radius-sm);
  opacity: 0.85;
}

/* ---------- Card / panel ---------- */
.frame07564-card {
  background: rgba(53, 80, 105, 0.55);
  border: 1px solid var(--frame07564-line);
  border-radius: var(--frame07564-radius);
  padding: 16px;
  margin: 0 0 16px;
}

.frame07564-card h2 {
  font-size: 17px;
  color: #fff;
}

.frame07564-card h3 {
  font-size: 14.5px;
  color: var(--frame07564-pink);
  margin-top: 14px;
}

.frame07564-card p {
  color: rgba(255, 245, 248, 0.9);
  font-size: 14px;
}

.frame07564-card a {
  color: var(--frame07564-coral);
  font-weight: 600;
  border-bottom: 1px dashed rgba(240, 128, 128, 0.5);
}

.frame07564-card a:hover {
  color: var(--frame07564-pink);
}

.frame07564-card ul {
  color: rgba(255, 245, 248, 0.9);
}

.frame07564-card ul li::marker {
  color: var(--frame07564-coral);
}

/* ---------- CTA strip ---------- */
.frame07564-cta {
  margin: 0 0 20px;
  padding: 18px 16px;
  border-radius: var(--frame07564-radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 182, 193, 0.25), transparent 55%),
    linear-gradient(135deg, var(--frame07564-red), var(--frame07564-purple));
  border: 1px solid var(--frame07564-line-strong);
  text-align: center;
  box-shadow: var(--frame07564-shadow);
}

.frame07564-cta h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.frame07564-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  margin-bottom: 14px;
}

.frame07564-cta-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.frame07564-btn--cta {
  background: #fff;
  color: var(--frame07564-red);
  font-size: 14px;
  padding: 11px 22px;
}

/* ---------- Inline list / two-column directory ---------- */
.frame07564-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.frame07564-list li a {
  display: block;
  padding: 9px 11px;
  border-radius: var(--frame07564-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frame07564-line);
  color: var(--frame07564-ivory);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  transition: background 0.18s ease, transform 0.18s ease;
}

.frame07564-list li a:active {
  transform: scale(0.97);
}

.frame07564-list li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--frame07564-pink);
}

/* ---------- Promo action tiles ---------- */
.frame07564-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.frame07564-promo-tile {
  display: block;
  padding: 12px 12px 14px;
  border-radius: var(--frame07564-radius-sm);
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(178, 34, 34, 0.32));
  border: 1px solid var(--frame07564-line-strong);
  color: var(--frame07564-ivory);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.frame07564-promo-tile:active {
  transform: scale(0.96);
}

.frame07564-promo-tile-tag {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--frame07564-pink);
  font-weight: 700;
  margin-bottom: 4px;
}

.frame07564-promo-tile-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ---------- Extended footer ---------- */
.frame07564-extended {
  margin: 24px 0 16px;
  padding: 18px 14px;
  border-radius: var(--frame07564-radius);
  background: rgba(24, 38, 52, 0.72);
  border: 1px solid var(--frame07564-line);
}

.frame07564-extended-block {
  margin-bottom: 18px;
}

.frame07564-extended-block:last-child {
  margin-bottom: 0;
}

.frame07564-extended-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--frame07564-pink);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--frame07564-line);
}

.frame07564-brand-blurb {
  font-size: 12.5px;
  color: rgba(255, 245, 248, 0.85);
  line-height: 1.55;
}

.frame07564-disclaimer {
  font-size: 11.5px;
  color: var(--frame07564-muted);
  line-height: 1.55;
  padding: 10px 12px;
  border-radius: var(--frame07564-radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--frame07564-coral);
}

/* ---------- Footer ---------- */
.frame07564-footer {
  margin-top: 8px;
  padding: 14px;
  text-align: center;
  font-size: 11.5px;
  color: var(--frame07564-muted);
  border-top: 1px solid var(--frame07564-line);
}

.frame07564-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 8px;
}

.frame07564-footer-links a {
  color: var(--frame07564-pink);
  font-size: 11.5px;
}

.frame07564-copy {
  letter-spacing: 0.3px;
}

/* ---------- Bottom navigation (through-bar) ---------- */
.frame07564-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  max-width: var(--frame07564-max);
  margin: 0 auto;
  height: var(--frame07564-nav-h);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(28, 42, 56, 0.96), rgba(18, 28, 38, 0.99));
  border-top: 1px solid var(--frame07564-line-strong);
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.frame07564-bottomnav-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

#frame07564-nav-indicator {
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background: var(--frame07564-grad-warm);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 0 10px rgba(240, 128, 128, 0.7);
}

.frame07564-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 2px 6px;
  color: var(--frame07564-muted);
  background: none;
  border: none;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, transform 0.18s ease;
  text-decoration: none;
  min-height: 48px;
}

.frame07564-nav-item:active {
  transform: scale(0.92);
}

.frame07564-nav-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frame07564-nav-icon svg {
  width: 22px;
  height: 22px;
}

.frame07564-nav-corner {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 9px 0;
  border-color: transparent var(--frame07564-coral) transparent transparent;
  border-top-right-radius: 4px;
}

.frame07564-nav-item--active {
  color: #fff;
}

.frame07564-nav-item--active .frame07564-nav-icon {
  transform: translateY(-1px);
}

.frame07564-nav-item--active .frame07564-nav-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.4), transparent 70%);
  z-index: -1;
}

.frame07564-nav-label {
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1;
}

/* ---------- Utility ---------- */
.frame07564-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.frame07564-hide {
  display: none !important;
}

/* ---------- Wide screen: keep the mobile canvas centered ---------- */
@media (min-width: 431px) {
  body {
    background-attachment: fixed;
  }
  .frame07564-shell {
    border-left: 1px solid rgba(255, 182, 193, 0.08);
    border-right: 1px solid rgba(255, 182, 193, 0.08);
  }
}

/* ---------- Compact (<=360px) tightening ---------- */
@media (max-width: 360px) {
  .frame07564-brand-tag {
    display: none;
  }
  .frame07564-brand-name {
    font-size: 16px;
  }
  .frame07564-btn {
    padding: 8px 11px;
    font-size: 12px;
  }
  .frame07564-grid {
    gap: 6px;
  }
  .frame07564-game-name {
    font-size: 9.5px;
  }
  .frame07564-hero h1 {
    font-size: 23px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
