/* Emma & Willow uses BEM under the ew- namespace: block, __element and --modifier. */
:root {
  --ew-forest: #173b30;
  --ew-forest-deep: #0c2820;
  --ew-coral: #df705b;
  --ew-coral-dark: #c85c49;
  --ew-gold: #d8a64a;
  --ew-paper: #f7f2e8;
  --ew-cream: #fffdf7;
  --ew-sage: #dfe3cc;
  --ew-ink: #17352c;
  --ew-muted: #657269;
  --ew-line: rgba(23, 59, 48, 0.14);
  --ew-shadow: 0 24px 70px rgba(22, 49, 40, 0.16);
  --ew-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ew-paper); color: var(--ew-ink); font-family: "DM Sans", Arial, sans-serif; line-height: 1.6; }
body.ew-body--locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:not(:disabled), a[href] { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.ew-shell { width: min(100% - 40px, 1260px); margin-inline: auto; }
.ew-skip { position: fixed; z-index: 300; top: 12px; left: 12px; transform: translateY(-150%); border-radius: 999px; background: var(--ew-cream); padding: 10px 16px; font-weight: 800; transition: transform 160ms var(--ew-ease); }
.ew-skip:focus { transform: translateY(0); }
.ew-kicker { margin: 0 0 14px; color: var(--ew-coral); font-size: 12px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-weight: 650; letter-spacing: -.045em; line-height: .99; }
h1 { font-size: clamp(4rem, 7.4vw, 7.4rem); }
h2 { font-size: clamp(3rem, 5.4vw, 5.8rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

.ew-header { position: sticky; z-index: 40; top: 0; border-bottom: 1px solid var(--ew-line); background: rgba(255, 253, 247, .93); backdrop-filter: blur(18px); }
.ew-header__inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.ew-brand { display: inline-flex; align-items: center; gap: 10px; }
.ew-brand__mark { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 7px 12px rgba(22, 63, 48, .2)); }
.ew-brand__copy { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.ew-brand__copy strong { font-family: "Fraunces", Georgia, serif; font-size: 22px; letter-spacing: -.04em; }
.ew-brand__copy small { margin-top: 5px; color: var(--ew-coral); font-size: 8px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.ew-nav { display: flex; align-items: center; gap: 27px; }
.ew-nav__link { position: relative; color: #536057; font-size: 14px; font-weight: 750; }
.ew-nav__link::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--ew-coral); content: ""; transform: scaleX(0); transition: transform 180ms var(--ew-ease); }
.ew-nav__link:hover::after, .ew-nav__link:focus-visible::after { transform: scaleX(1); }
.ew-header__toggle { display: none; border: 0; background: transparent; color: var(--ew-forest); font-weight: 800; }
.ew-account-button { min-height: 42px; border: 1px solid var(--ew-line); border-radius: 999px; background: #ece6d9; padding: 0 16px; color: var(--ew-forest); font-size: 12px; font-weight: 850; transition: background 160ms var(--ew-ease), transform 160ms var(--ew-ease); }
.ew-account-button:hover { background: var(--ew-sage); transform: translateY(-1px); }
.ew-account-button--active { border-color: rgba(23, 59, 48, .22); background: var(--ew-forest); color: #fff; }

.ew-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 0 24px; font-size: 14px; font-weight: 850; transition: transform 160ms var(--ew-ease), box-shadow 180ms var(--ew-ease), background 180ms var(--ew-ease); }
.ew-button:hover { transform: translateY(-2px); }
.ew-button:active { transform: scale(.97); }
.ew-button--small { min-height: 44px; padding-inline: 21px; }
.ew-button--coral { background: var(--ew-coral); color: #fff; box-shadow: 0 13px 28px rgba(210, 92, 73, .2); }
.ew-button--coral:hover { background: var(--ew-coral-dark); }
.ew-button--forest { background: var(--ew-forest); color: #fff; }
.ew-button--cream { background: var(--ew-cream); color: var(--ew-forest); }
.ew-button--glass { border-color: rgba(255, 255, 255, .32); background: rgba(18, 46, 37, .75); color: #fff; backdrop-filter: blur(14px); }
.ew-button--spin { min-width: 122px; border-color: rgba(255, 255, 255, .68); background: var(--ew-coral); color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(255, 255, 255, .25); }
.ew-button:disabled { cursor: not-allowed; opacity: .52; transform: none; }
.ew-text-link { display: inline-block; border-bottom: 2px solid var(--ew-forest); font-weight: 800; }

.ew-hero { position: relative; min-height: calc(100vh - 78px); overflow: hidden; background: var(--ew-paper); }
.ew-hero__image { position: absolute; inset: 0 0 0 40%; width: 60%; height: 100%; object-fit: cover; }
.ew-hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ew-paper) 0 36%, rgba(247, 242, 232, .96) 43%, rgba(247, 242, 232, .45) 62%, transparent 79%); }
.ew-hero__content { position: relative; z-index: 2; display: flex; min-height: calc(100vh - 78px); flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 76px; }
.ew-hero__content h1 { max-width: 700px; }
.ew-hero__lead { max-width: 590px; margin: 28px 0 30px; color: #536159; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.ew-hero__actions { display: flex; align-items: center; gap: 26px; }
.ew-proof { display: flex; gap: 28px; margin: 38px 0 0; padding: 0; color: #6a766f; font-size: 13px; font-weight: 750; list-style: none; }
.ew-proof li + li::before { margin-right: 28px; color: var(--ew-coral); content: "•"; }

.ew-section { padding-block: clamp(90px, 11vw, 150px); }
.ew-section--paper { background: var(--ew-paper); }
.ew-section--sage { background: var(--ew-sage); }
.ew-section--forest { background: var(--ew-forest); color: var(--ew-paper); }
.ew-section--contact { background: #ede5d7; }
.ew-section__heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.ew-section__heading h2 { max-width: 850px; }
.ew-section__heading > p { margin: 0 0 8px; color: var(--ew-muted); font-size: 17px; }

.ew-game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ew-game-card { overflow: hidden; border: 1px solid var(--ew-line); border-radius: 28px; background: var(--ew-cream); box-shadow: 0 18px 50px rgba(27, 57, 47, .08); transition: transform 220ms var(--ew-ease), box-shadow 220ms var(--ew-ease); }
.ew-game-card:hover { transform: translateY(-5px); box-shadow: var(--ew-shadow); }
.ew-game-card__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.ew-game-card__body { padding: 30px; }
.ew-game-card__body h3 { margin-bottom: 15px; }
.ew-game-card__body > p:not(.ew-kicker) { min-height: 52px; color: var(--ew-muted); }
.ew-game-card__facts { display: flex; gap: 12px; margin: 24px 0; }
.ew-game-card__facts div { min-width: 120px; border-radius: 13px; background: #eee8dd; padding: 10px 13px; }
.ew-game-card__facts dt { color: #7c837c; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.ew-game-card__facts dd { margin: 2px 0 0; font-family: "Fraunces", Georgia, serif; font-weight: 700; }

.ew-answer { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.ew-answer__copy > p:not(.ew-kicker) { max-width: 540px; margin: 28px 0; font-size: 18px; }
.ew-value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ew-value-card { border-radius: 22px; background: rgba(255, 253, 247, .72); padding: 26px; box-shadow: 0 12px 34px rgba(25, 55, 43, .08); }
.ew-value-card > span { color: var(--ew-coral); font-family: "Fraunces", Georgia, serif; font-size: 13px; font-weight: 800; }
.ew-value-card h3 { margin: 9px 0 12px; font-size: 1.6rem; }
.ew-value-card p { margin: 0; color: #647066; }
.ew-story, .ew-responsible { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.ew-story__copy p, .ew-responsible p { margin: 0 0 20px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.ew-section--forest .ew-kicker { color: #efaa97; }
.ew-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.ew-contact > div > p:not(.ew-kicker) { max-width: 480px; margin: 26px 0; color: var(--ew-muted); }
.ew-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 16px; border-radius: 26px; background: var(--ew-cream); padding: clamp(24px, 4vw, 42px); box-shadow: var(--ew-shadow); }
.ew-form label { align-self: end; font-size: 12px; font-weight: 800; }
.ew-form label[for="ew-contact-message"], .ew-form textarea, .ew-form .ew-button, .ew-form__status { grid-column: 1 / -1; }
.ew-form input, .ew-form textarea { width: 100%; border: 1px solid var(--ew-line); border-radius: 13px; background: #f4efe5; padding: 14px 16px; color: var(--ew-ink); outline: 0; }
.ew-form input:focus, .ew-form textarea:focus { border-color: var(--ew-coral); box-shadow: 0 0 0 3px rgba(223, 112, 91, .14); }
.ew-form__status { min-height: 24px; margin: 0; color: var(--ew-forest); font-weight: 750; }

.ew-footer { background: #102d24; color: #f7f2e8; padding: 70px 0 25px; }
.ew-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.ew-footer__grid > div:first-child p { max-width: 330px; color: #bdc8c0; }
.ew-brand--footer .ew-brand__copy strong { color: #fff; }
.ew-footer h2 { margin-bottom: 18px; font: 800 11px/1.2 "DM Sans", Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.ew-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.ew-footer button { border: 0; background: none; padding: 0; color: inherit; }
.ew-footer a, .ew-footer button { color: #ced6d0; }
.ew-footer__base { display: flex; justify-content: space-between; margin-top: 54px; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 22px; color: #9ea9a2; font-size: 12px; }

.ew-cookie { position: fixed; z-index: 160; right: 24px; bottom: 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; width: min(100% - 48px, 620px); border: 1px solid rgba(255, 255, 255, .14); border-radius: 22px; background: rgba(15, 50, 39, .96); padding: 24px; color: #fff; box-shadow: 0 20px 60px rgba(0, 0, 0, .3); backdrop-filter: blur(18px); }
.ew-cookie strong { font-family: "Fraunces", Georgia, serif; font-size: 22px; }
.ew-cookie p { margin: 5px 0 0; color: #cdd7d0; font-size: 13px; }
.ew-cookie__actions { display: flex; gap: 10px; }
.ew-cookie .ew-button { min-height: 44px; padding-inline: 17px; font-size: 12px; }

.ew-legal { position: fixed; z-index: 210; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(8, 27, 21, .78); backdrop-filter: blur(12px); }
.ew-legal__panel { position: relative; width: min(100%, 760px); max-height: min(780px, calc(100vh - 48px)); overflow: auto; border-radius: 28px; background: var(--ew-paper); padding: clamp(30px, 6vw, 64px); box-shadow: 0 28px 90px rgba(0, 0, 0, .32); }
.ew-legal__panel h2 { font-size: clamp(2.8rem, 6vw, 4.7rem); }
.ew-legal__close { position: absolute; top: 18px; right: 20px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #e8dfd0; color: var(--ew-forest); font-size: 26px; }
.ew-legal__copy h3 { margin: 30px 0 10px; font-size: 1.55rem; }
.ew-legal__copy p { color: var(--ew-muted); }

.ew-auth { position: fixed; z-index: 230; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(8, 27, 21, .82); backdrop-filter: blur(14px); }
.ew-auth__panel { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; width: min(100%, 900px); max-height: min(760px, calc(100vh - 48px)); overflow: auto; border-radius: 30px; background: var(--ew-paper); box-shadow: 0 30px 100px rgba(0, 0, 0, .38); }
.ew-auth__close { position: absolute; z-index: 3; top: 17px; right: 18px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: rgba(23, 59, 48, .1); color: var(--ew-forest); font-size: 25px; }
.ew-auth__intro { display: flex; flex-direction: column; justify-content: center; border-radius: 30px 0 0 30px; background: var(--ew-forest); padding: clamp(34px, 6vw, 64px); color: #fff; }
.ew-auth__intro .ew-kicker { color: #f0ad9b; }
.ew-auth__intro h2 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
.ew-auth__intro > p:not(.ew-kicker) { color: #d4dfd8; }
.ew-auth__intro ul { margin: 18px 0 0; padding: 0; color: #d4dfd8; font-size: 13px; list-style: none; }
.ew-auth__intro li { position: relative; padding: 7px 0 7px 22px; }
.ew-auth__intro li::before { position: absolute; left: 0; color: #efaa97; content: "✓"; font-weight: 900; }
.ew-auth__main, .ew-auth__account { padding: clamp(34px, 6vw, 64px); }
.ew-auth__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 28px; border-radius: 999px; background: #e9e2d5; padding: 5px; }
.ew-auth__tab { min-height: 42px; border: 0; border-radius: 999px; background: transparent; color: var(--ew-muted); font-weight: 850; }
.ew-auth__tab[aria-selected="true"] { background: var(--ew-cream); color: var(--ew-forest); box-shadow: 0 6px 18px rgba(23, 59, 48, .1); }
.ew-auth__form { display: grid; gap: 10px; }
.ew-auth__form > label, .ew-auth__register-fields > label:not(.ew-auth__age) { margin-top: 8px; font-size: 12px; font-weight: 850; }
.ew-auth__form input[type="text"], .ew-auth__form input[type="password"], .ew-auth__form > input { width: 100%; min-width: 0; border: 1px solid var(--ew-line); border-radius: 13px; background: #efe9de; padding: 14px 15px; color: var(--ew-forest); outline: 0; }
.ew-auth__form input:focus { border-color: var(--ew-coral); box-shadow: 0 0 0 3px rgba(223, 112, 91, .14); }
.ew-auth__hint { margin: -3px 0 3px; color: var(--ew-muted); font-size: 11px; }
.ew-auth__password-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.ew-auth__password-row button { min-width: 60px; border: 1px solid var(--ew-line); border-radius: 12px; background: var(--ew-cream); color: var(--ew-forest); font-size: 11px; font-weight: 850; }
.ew-auth__register-fields { display: grid; gap: 10px; }
.ew-auth__age { display: flex; align-items: flex-start; gap: 9px; margin: 8px 0 5px; color: var(--ew-muted); font-size: 12px; font-weight: 700; }
.ew-auth__age input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ew-coral); }
.ew-auth__form .ew-button { margin-top: 10px; }
.ew-auth__status { min-height: 24px; margin: 0; color: var(--ew-coral-dark); font-size: 12px; font-weight: 750; }
.ew-auth__status--success { color: #2d6b51; }
.ew-auth__security { margin: 16px 0 0; color: #7a817b; font-size: 10px; line-height: 1.5; }
.ew-auth__account { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.ew-auth__avatar { display: grid; width: 86px; height: 86px; place-items: center; border: 5px solid #ece5d8; border-radius: 50%; background: var(--ew-forest); color: #fff; font-family: "Fraunces", Georgia, serif; font-size: 40px; font-weight: 700; box-shadow: 0 16px 38px rgba(23, 59, 48, .2); }
.ew-auth__account > p { margin: 18px 0 5px; color: var(--ew-muted); }
.ew-auth__account > strong { font-family: "Fraunces", Georgia, serif; font-size: 38px; letter-spacing: -.04em; }
.ew-auth__account .ew-button { margin-top: 20px; }

.ew-slot { position: fixed; z-index: 200; inset: 0; background: #071c18; }
.ew-slot__stage { position: relative; width: 100%; height: 100%; min-height: 620px; overflow: hidden; color: #fff; }
.ew-slot__scene, .ew-slot__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.ew-slot__scene { object-fit: cover; }
.ew-slot__shade { background: linear-gradient(180deg, rgba(5, 27, 24, .35), transparent 25% 70%, rgba(3, 17, 14, .68)); }
.ew-slot__topbar { position: absolute; z-index: 15; top: 0; right: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 18px 24px; }
.ew-slot__topbar button { border: 0; background: none; color: #fff; font-weight: 800; }
.ew-slot__back { justify-self: start; }
.ew-slot__rules-button { justify-self: end; }
.ew-brand--compact .ew-brand__mark { width: 38px; height: 38px; }
.ew-brand--compact .ew-brand__copy strong { color: #fff; }
.ew-slot__title { position: absolute; z-index: 10; top: 92px; left: 28px; width: min(420px, 35vw); text-shadow: 0 2px 20px rgba(0, 0, 0, .5); }
.ew-slot__title h2 { font-size: clamp(2.5rem, 4.1vw, 4.7rem); }
.ew-slot__title > p:last-child { margin: 12px 0 0; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ew-slot__rules { position: absolute; z-index: 24; top: 78px; right: 24px; width: min(390px, calc(100% - 48px)); border: 1px solid rgba(255, 255, 255, .18); border-radius: 20px; background: rgba(9, 35, 28, .94); padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, .28); backdrop-filter: blur(16px); }
.ew-slot__rules h3 { font-size: 1.7rem; }
.ew-slot__rules p { margin-bottom: 0; color: #d7e0db; font-size: 14px; }
.ew-slot__cabinet { position: absolute; z-index: 8; top: 53%; left: 50%; width: min(58vw, 820px); aspect-ratio: 1.5; transform: translate(-50%, -50%); }
.ew-slot__frame { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; object-fit: fill; pointer-events: none; }
.ew-reels { --ew-columns: 5; --ew-rows: 3; position: absolute; z-index: 2; top: 21%; right: 13.5%; bottom: 18%; left: 13.5%; display: grid; grid-template-columns: repeat(var(--ew-columns), 1fr); grid-template-rows: repeat(var(--ew-rows), 1fr); gap: 3px; overflow: hidden; border-radius: 4px; background: #193a35; }
.ew-slot--garden-clusters .ew-slot__cabinet { width: min(60vw, 810px); aspect-ratio: 1.23; }
.ew-slot--garden-clusters .ew-reels { top: 15%; right: 11%; bottom: 14%; left: 11%; }
.ew-slot--acorn-cascades .ew-slot__cabinet { width: min(53vw, 700px); aspect-ratio: 1; }
.ew-slot--acorn-cascades .ew-reels { top: 12%; right: 12%; bottom: 12%; left: 12%; }
.ew-slot--cloud-vault .ew-slot__cabinet { width: min(58vw, 820px); aspect-ratio: 1.5; }
.ew-slot--cloud-vault .ew-reels { top: 22%; right: 14%; bottom: 18%; left: 14%; }
.ew-reels__cell { position: relative; display: grid; min-width: 0; min-height: 0; place-items: center; overflow: hidden; border: 1px solid rgba(19, 57, 52, .68); background: radial-gradient(circle at 50% 40%, #fffef8, #e3ece9); }
.ew-reels__cell img { width: 76%; height: 76%; object-fit: contain; filter: drop-shadow(0 5px 5px rgba(27, 45, 39, .18)); }
.ew-slot--garden-clusters .ew-reels__cell img, .ew-slot--acorn-cascades .ew-reels__cell img { width: 72%; height: 72%; }
.ew-reels__value { position: absolute; right: 5px; bottom: 3px; display: grid; min-width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--ew-coral); color: #fff; font-size: 10px; font-weight: 900; }
.ew-reels__cell--win { z-index: 3; box-shadow: inset 0 0 0 4px #f5c660, 0 0 22px #f5c660; animation: ew-win 360ms alternate infinite; }
.ew-reels__cell--held { background: radial-gradient(circle, #fffbd3, #efc457); }
.ew-reels--spinning .ew-reels__cell img { animation: ew-spin 130ms linear infinite; filter: blur(2px); }
.ew-slot__hud { position: absolute; z-index: 14; top: 86px; right: 28px; width: min(360px, 35vw); border: 1px solid rgba(255, 255, 255, .16); border-radius: 20px; background: rgba(11, 39, 32, .9); padding: 16px; box-shadow: 0 15px 44px rgba(0, 0, 0, .26); backdrop-filter: blur(16px); }
.ew-slot__hud dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 0; }
.ew-slot__hud dl > div { min-width: 0; border-radius: 12px; background: rgba(255, 255, 255, .08); padding: 9px; }
.ew-slot__hud dt { color: #c5d0ca; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ew-slot__hud dd { margin: 2px 0 0; overflow: hidden; font-family: "Fraunces", Georgia, serif; font-size: 21px; font-weight: 700; text-overflow: ellipsis; }
.ew-slot__hud > p { margin: 10px 2px 0; color: #e4eae6; font-size: 12px; }
.ew-slot__controls { position: absolute; z-index: 15; right: 28px; bottom: 28px; display: flex; gap: 10px; }
.ew-slot__disclaimer { position: absolute; z-index: 11; bottom: 24px; left: 28px; margin: 0; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

@keyframes ew-spin { from { transform: translateY(-22%) scale(.9); } to { transform: translateY(22%) scale(.9); } }
@keyframes ew-win { from { transform: scale(1); } to { transform: scale(1.05); } }

@media (max-width: 900px) {
  .ew-header__toggle { display: block; }
  .ew-nav { position: absolute; top: 78px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--ew-line); background: var(--ew-cream); padding: 12px 20px 20px; }
  .ew-nav--open { display: flex; }
  .ew-nav__link, .ew-nav .ew-button { padding: 14px 4px; }
  .ew-nav .ew-button { margin-top: 8px; }
  .ew-account-button { margin-top: 8px; }
  .ew-hero__image { inset: 0; width: 100%; }
  .ew-hero__wash { background: linear-gradient(90deg, rgba(247, 242, 232, .98), rgba(247, 242, 232, .88) 50%, rgba(247, 242, 232, .22)); }
  .ew-hero__content h1 { max-width: 640px; }
  .ew-section__heading, .ew-answer, .ew-story, .ew-responsible, .ew-contact { grid-template-columns: 1fr; gap: 42px; }
  .ew-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .ew-slot__title { top: 70px; width: 45vw; }
  .ew-slot__hud { top: 70px; width: 44vw; }
  .ew-slot__cabinet, .ew-slot--garden-clusters .ew-slot__cabinet, .ew-slot--acorn-cascades .ew-slot__cabinet, .ew-slot--cloud-vault .ew-slot__cabinet { width: min(78vw, 760px); }
}

@media (max-width: 640px) {
  .ew-shell { width: min(100% - 24px, 1260px); }
  .ew-header__inner { min-height: 68px; }
  .ew-brand__mark { width: 42px; height: 42px; }
  .ew-brand__copy strong { font-size: 19px; }
  .ew-hero { min-height: 720px; }
  .ew-hero__content { min-height: 720px; justify-content: flex-start; padding-top: 78px; }
  .ew-hero__wash { background: linear-gradient(180deg, rgba(247, 242, 232, .98) 0 52%, rgba(247, 242, 232, .7) 73%, rgba(247, 242, 232, .15)); }
  .ew-hero__image { object-position: 63% center; }
  h1 { font-size: clamp(3.4rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .ew-hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .ew-proof { flex-wrap: wrap; gap: 6px 14px; }
  .ew-proof li + li::before { margin-right: 14px; }
  .ew-section { padding-block: 78px; }
  .ew-game-grid, .ew-value-grid, .ew-form, .ew-footer__grid { grid-template-columns: 1fr; }
  .ew-game-card__body > p:not(.ew-kicker) { min-height: 0; }
  .ew-footer__base { align-items: flex-start; flex-direction: column; gap: 8px; }
  .ew-cookie { right: 12px; bottom: 12px; grid-template-columns: 1fr; width: calc(100% - 24px); gap: 18px; }
  .ew-cookie__actions { display: grid; grid-template-columns: 1fr; }
  .ew-auth { padding: 12px; }
  .ew-auth__panel { grid-template-columns: 1fr; max-height: calc(100vh - 24px); }
  .ew-auth__intro { border-radius: 30px 30px 0 0; padding: 32px 24px; }
  .ew-auth__intro h2 { padding-right: 26px; font-size: 2.7rem; }
  .ew-auth__intro ul { display: none; }
  .ew-auth__close { background: rgba(255, 255, 255, .16); color: #fff; }
  .ew-auth__main, .ew-auth__account { padding: 28px 24px 34px; }
  .ew-slot__stage { min-height: 600px; }
  .ew-slot__topbar { padding: 13px 12px; }
  .ew-slot__topbar .ew-brand { display: none; }
  .ew-slot__topbar { grid-template-columns: 1fr 1fr; }
  .ew-slot__title { top: 62px; left: 12px; width: calc(100% - 24px); }
  .ew-slot__title .ew-kicker { margin-bottom: 5px; font-size: 8px; }
  .ew-slot__title h2 { font-size: 2rem; }
  .ew-slot__title > p:last-child { margin-top: 5px; font-size: 9px; }
  .ew-slot__hud { top: 142px; right: 12px; left: 12px; width: auto; padding: 10px; }
  .ew-slot__hud dl > div { padding: 7px; }
  .ew-slot__hud dd { font-size: 17px; }
  .ew-slot__hud > p { margin-top: 6px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .ew-slot__cabinet, .ew-slot--garden-clusters .ew-slot__cabinet, .ew-slot--acorn-cascades .ew-slot__cabinet, .ew-slot--cloud-vault .ew-slot__cabinet { top: 54%; width: 96vw; }
  .ew-slot--garden-clusters .ew-slot__cabinet { top: 55%; }
  .ew-slot--acorn-cascades .ew-slot__cabinet { top: 55%; width: min(86vw, 520px); }
  .ew-slot__controls { right: 12px; bottom: 16px; left: 12px; display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 7px; }
  .ew-slot__controls .ew-button { min-width: 0; min-height: 44px; padding: 0 8px; font-size: 11px; }
  .ew-slot__disclaimer { right: 12px; bottom: 72px; left: 12px; text-align: center; font-size: 7px; }
  .ew-slot__rules { top: 56px; right: 12px; }
  .ew-reels { gap: 1px; }
  .ew-reels__value { right: 2px; bottom: 2px; min-width: 18px; height: 18px; font-size: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
