:root {
  --primary: #071833;
  --primary-soft: #102c50;
  --accent: #f2c35b;
  --action: #1fbf8f;
  --alert: #e2574c;
  --ink: #13233a;
  --muted: #617087;
  --line: #dce2e9;
  --surface: #f3f6f8;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(7, 24, 51, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 { font-size: 56px; margin-bottom: 20px; }
h2 { font-size: 38px; margin-bottom: 18px; }
h3 { font-size: 20px; }

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  color: var(--white);
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--primary);
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.brand-name {
  max-width: 260px;
  font-size: 20px;
  line-height: 1.1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: #d6deea;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--accent); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.download-disabled {
  cursor: not-allowed;
  filter: grayscale(.35);
  opacity: .58;
}

.download-disabled:hover { transform: none; }

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible { outline: 3px solid rgba(31, 191, 143, 0.45); outline-offset: 3px; }

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--primary);
  font-size: 13px;
}

.button-primary { color: #05231a; background: var(--action); }
.button-dark { color: var(--white); background: var(--primary); }
.button-outline { color: var(--primary); border-color: var(--primary); background: transparent; }

.menu-toggle,
.mobile-menu { display: none; }

.suspension-banner {
  position: relative;
  z-index: 12;
  color: #fff8e8;
  background: #8f2f2a;
  border-bottom: 1px solid #6f201c;
}

.suspension-banner-inner {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.suspension-banner p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.suspension-icon {
  display: inline-flex;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: flex;
  min-height: 620px;
  height: calc(74svh - 76px);
  max-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: #06112b;
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 25, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero-content > * { max-width: 570px; }

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark { color: #8c6410; }

.hero h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  margin-bottom: 26px;
  color: #e7edf5;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-actions .button img { filter: brightness(0.2); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-weight: 800;
}

.dark-link { color: var(--primary); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #c7d1df;
  font-size: 12px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #c7d1df;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.trust-strip {
  color: var(--white);
  background: var(--primary-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
  align-items: center;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:last-child { border-right: 0; }
.trust-item img { width: 42px; height: 42px; object-fit: contain; }
.trust-item strong,
.trust-item span { display: block; }
.trust-item strong { color: var(--accent); font-size: 15px; }
.trust-item span { color: #c5d0df; font-size: 12px; }

.section { padding: 88px 0; }
.section-muted { background: var(--surface); }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 80px;
}

.game-visual {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e6edf0;
  border-radius: 8px;
}

.game-visual::before,
.game-visual::after {
  position: absolute;
  width: 170px;
  height: 240px;
  border: 10px solid var(--white);
  border-radius: 8px;
  background: var(--alert);
  content: "";
  box-shadow: var(--shadow);
}

.game-visual::before { transform: rotate(-16deg); }
.game-visual::after { background: var(--action); transform: rotate(15deg); }

.game-visual img {
  position: relative;
  z-index: 2;
  width: 245px;
  height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(7, 24, 51, 0.25));
}

.section-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.feature-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--action);
  border-radius: 50%;
  content: "";
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) { color: var(--muted); }
.section-heading.light { color: var(--white); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  min-width: 0;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit img {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  object-fit: contain;
}

.benefit h3 { margin-bottom: 10px; }
.benefit p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
  text-align: left;
}

.heading-row h2 { margin-bottom: 0; }

.legal-label,
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  overflow: hidden;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}

.offer-card > div {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: var(--white);
}

.offer-card h3 { margin: 0; font-size: 16px; }
.offer-card a { color: var(--accent); font-size: 12px; font-weight: 800; }

.how-section { color: var(--white); background: var(--primary); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
}

.steps li {
  display: flex;
  min-height: 210px;
  gap: 20px;
  padding: 38px 30px;
  background: var(--primary-soft);
}

.steps li > span {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.steps h3 { margin: 7px 0 10px; color: var(--white); }
.steps p { margin: 0; color: #c5d0df; font-size: 14px; }

.responsible-section { background: #edf5f0; }

.responsible-layout {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.responsible-layout img { width: 90px; height: 90px; object-fit: contain; }
.responsible-layout h2 { margin-bottom: 10px; }
.responsible-layout p:last-child { max-width: 700px; margin-bottom: 0; color: var(--muted); }

.faq-layout { align-items: start; }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--action); font-size: 22px; font-weight: 500; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 36px 24px 0; color: var(--muted); }
.faq-list details > div a { color: var(--primary); font-weight: 800; text-decoration: underline; }

.site-footer {
  padding-top: 66px;
  color: #c5d0df;
  background: #040d1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.75fr 0.9fr 1.35fr;
  gap: 48px;
  padding-bottom: 56px;
}

.brand-footer { margin-bottom: 20px; color: var(--white); }
.brand-footer .brand-mark { border-color: var(--accent); }
.footer-brand p { max-width: 340px; color: #93a2b5; font-size: 14px; }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font-size: 14px; }
.site-footer a:not(.brand) { display: block; width: fit-content; margin-bottom: 11px; color: #c5d0df; font-size: 13px; }
.site-footer a:hover { color: var(--accent); }
.footer-contact p { color: #93a2b5; font-size: 13px; }
.age-badge { border-color: rgba(255,255,255,.22); color: var(--accent); }

.responsible-note {
  padding: 16px 0;
  color: #ffd6d2;
  background: #3b171b;
  font-size: 12px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #718096;
  font-size: 12px;
}

.mobile-download { display: none; }

.toast {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  width: min(420px, calc(100% - 32px));
  padding: 22px 26px;
  transform: translate(-50%, -50%);
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.page-hero {
  padding: 82px 0 76px;
  color: var(--white);
  background: var(--primary);
  border-bottom: 8px solid var(--accent);
}

.page-hero h1 { max-width: 900px; margin-bottom: 16px; font-family: Georgia, serif; }
.page-hero p:last-child { max-width: 680px; margin-bottom: 0; color: #c5d0df; font-size: 18px; }

.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.prose-lead h2 { max-width: 470px; }
.prose p { color: var(--muted); }

.contact-band,
.support-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

.contact-band h2 { margin-bottom: 10px; font-size: 28px; }
.contact-band p { max-width: 720px; margin-bottom: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-method {
  min-width: 0;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
}

.contact-method > span {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.contact-method h2 { font-size: 20px; }
.contact-method p,
.contact-method address { color: var(--muted); font-size: 14px; font-style: normal; }
.contact-method a { color: var(--primary); font-weight: 850; text-decoration: underline; }

.support-note { align-items: start; }
.support-note > p { max-width: 640px; color: var(--muted); }

.faq-page-grid {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 90px;
}

.faq-page-grid aside { position: sticky; top: 112px; }
.faq-page-grid aside p:not(.eyebrow) { color: var(--muted); }
.faq-list-large summary { min-height: 78px; font-size: 17px; }

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  align-items: start;
  justify-content: center;
  gap: 72px;
}

.legal-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 4px;
  padding: 24px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  font-size: 13px;
}

.legal-aside strong { margin-top: 12px; color: var(--primary); }
.legal-aside strong:first-child { margin-top: 0; }
.legal-aside span,
.legal-aside a { color: var(--muted); }
.legal-aside a { text-decoration: underline; }

.legal-review {
  padding: 14px 16px;
  color: #5d3100;
  background: #fff1cf;
  border-left: 4px solid var(--accent);
  font-size: 13px;
}

.legal-content section { padding: 22px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-of-type { padding-top: 8px; }
.legal-content h2 { margin-bottom: 12px; font-size: 23px; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--primary); font-weight: 800; text-decoration: underline; }

@media (max-width: 980px) {
  h1 { font-size: 48px; }
  h2 { font-size: 33px; }
  .desktop-nav { gap: 18px; }
  .desktop-download { display: none; }
  .hero { min-height: 570px; }
  .hero h1 { font-size: 54px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 10px 0; }
  .trust-item:nth-child(2) { border-right: 0; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 15px; padding-bottom: 64px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .container { width: min(100% - 32px, 620px); }
  .site-header,
  .header-inner { height: 66px; }
  .brand-mark { flex-basis: 38px; width: 38px; height: 38px; font-size: 16px; }
  .brand-name { max-width: calc(100vw - 112px); font-size: 17px; }
  .desktop-nav { display: none; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 23px; height: 2px; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 66px 0 auto 0;
    z-index: 49;
    display: grid;
    max-height: calc(100svh - 66px);
    gap: 0;
    padding: 12px 16px 22px;
    overflow: auto;
    color: var(--white);
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.14); font-weight: 750; }
  .mobile-menu .button { margin-top: 16px; color: #05231a; background: var(--action); }
  .suspension-banner-inner { align-items: flex-start; justify-content: flex-start; text-align: left; }
  .suspension-banner p { font-size: 12px; }
  .suspension-icon { flex-basis: 24px; width: 24px; height: 24px; }
  .hero {
    min-height: 520px;
    height: calc(68svh - 66px);
    max-height: 620px;
    align-items: end;
    background-position: 40% center;
  }
  .hero-shade { background: rgba(2, 9, 25, 0.68); }
  .hero-content { padding-bottom: 38px; }
  .hero h1 { font-size: 43px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: min(100%, 320px); }
  .hero-actions .text-link { width: fit-content; }
  .hero-meta { align-items: flex-start; }
  .hero-meta span { flex: 0 0 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: 0; }
  .trust-item img { width: 34px; height: 34px; }
  .trust-item span { display: none; }
  .section { padding: 64px 0; }
  .split-layout,
  .prose-grid,
  .faq-page-grid,
  .legal-layout { grid-template-columns: 1fr; gap: 44px; }
  .game-visual { min-height: 320px; }
  .game-visual img { width: 210px; height: 210px; }
  .section-heading { margin-bottom: 34px; text-align: left; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { display: grid; grid-template-columns: 54px minmax(0, 1fr); column-gap: 18px; padding: 24px 20px; }
  .benefit img { grid-row: 1 / 3; margin: 0; }
  .benefit h3 { align-self: end; margin: 0 0 5px; }
  .benefit p { align-self: start; }
  .heading-row { align-items: start; flex-direction: column; gap: 15px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { display: grid; grid-template-columns: 42% 58%; }
  .offer-card img { aspect-ratio: 1 / 1; }
  .offer-card > div { align-items: flex-start; flex-direction: column; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; padding: 28px 22px; }
  .responsible-layout { grid-template-columns: 72px minmax(0, 1fr); gap: 20px; }
  .responsible-layout img { width: 70px; height: 70px; }
  .responsible-layout .button { grid-column: 1 / -1; width: 100%; }
  .faq-layout { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .mobile-download {
    position: fixed;
    z-index: 48;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    color: #05231a;
    background: var(--action);
    border-top: 1px solid rgba(0, 0, 0, .15);
    font-size: 15px;
    font-weight: 900;
  }
  .mobile-download img { filter: brightness(.2); }
  .toast { width: calc(100% - 32px); }
  .page-hero { padding: 62px 0 56px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero p:last-child { font-size: 16px; }
  .contact-band,
  .support-note { grid-template-columns: 1fr; gap: 24px; }
  .faq-page-grid aside,
  .legal-aside { position: static; }
  .legal-layout { gap: 30px; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 28px); }
  .hero h1 { font-size: 38px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-item span { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* CoflyRummy brand direction: airy editorial blue with coral accents. */
body {
  color: #172744;
  background: #f8f5ee;
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  color: #12325f;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -.04em;
}

.container { width: min(1180px, calc(100% - 56px)); }

.site-header,
.header-inner { height: 82px; }

.site-header {
  color: #17345e;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #dce4ed;
  box-shadow: 0 12px 34px rgba(17, 66, 127, .08);
  backdrop-filter: blur(16px);
}

.brand { letter-spacing: -.03em; }
.brand-mark {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.18), 0 8px 18px rgba(16,79,159,.18);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: -.05em;
}
.brand-mark-image { overflow: hidden; padding: 0; background: transparent; }
.brand-mark-image img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { color: #163662; font-size: 21px; }

.desktop-nav { gap: 32px; }
.desktop-nav a { color: #51647e; font-size: 13px; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--primary); }

.button {
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(16,79,159,.12);
}
.button-small,
.button-primary { color: #fff; background: var(--action); }
.button-dark { color: #fff; background: var(--primary); }
.button-outline { color: var(--primary); border-color: var(--primary); }

.suspension-banner {
  color: #fff;
  background: var(--primary);
  border-bottom: 0;
}
.suspension-banner-inner { min-height: 46px; }
.suspension-icon { border-radius: 7px; }
.suspension-banner p { font-size: 13px; letter-spacing: .015em; }

body[data-page="home"] .hero {
  position: relative;
  display: block;
  min-height: 660px;
  height: auto;
  max-height: none;
  color: #172744;
  background: #f8f5ee;
}
.hero-shade { display: none; }

.hero-art {
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  overflow: hidden;
  background: var(--primary);
  clip-path: polygon(0 0, 91% 0, 100% 50%, 91% 100%, 0 100%);
}
.hero-art > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-game-badge {
  position: absolute;
  bottom: 36px;
  left: max(28px, calc((100vw - 1180px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 15px 9px 9px;
  color: #12325f;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(6, 37, 88, .2);
  backdrop-filter: blur(12px);
}
.badge-suit {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  border-radius: 9px;
  font-family: Georgia, serif;
  font-size: 22px;
}
.hero-game-badge span,
.hero-game-badge strong,
.hero-game-badge small { display: block; }
.hero-game-badge strong { color: var(--primary); font-size: 13px; letter-spacing: .04em; }
.hero-game-badge small { color: #708099; font-size: 10px; }

body[data-page="home"] .hero-content {
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
body[data-page="home"] .hero-content > * { width: min(42%, 470px); max-width: 470px; }
body[data-page="home"] .hero h1 {
  margin-bottom: 20px;
  color: var(--primary);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(58px, 6vw, 78px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.065em;
  text-shadow: none;
}
.eyebrow { color: var(--accent); letter-spacing: .105em; }
.eyebrow.dark { color: var(--primary); }
.hero-copy { color: #5c6e87; font-size: 18px; }
.hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
.hero-actions .button img { filter: brightness(0) invert(1); }
.text-link,
.dark-link { color: var(--primary); }
.hero-meta { color: #7b8798; }
.hero-meta span { color: var(--primary); background: #fff; border-color: #9fb5d2; border-radius: 10px; }

.trust-strip { color: #172744; background: #fff; border-bottom: 1px solid #dfe6ef; }
.trust-grid { min-height: 118px; }
.trust-item { border-right-color: #dfe6ef; }
.trust-item img { padding: 7px; background: #eaf3ff; border-radius: 13px; }
.trust-item strong { color: var(--primary); }
.trust-item span { color: #738198; }

.section { padding: 96px 0; }
.section-muted { background: #eaf3ff; }
.section-heading { margin-bottom: 48px; }

.game-section { color: #fff; background: var(--primary); }
.game-section h2 { color: #fff; }
.game-section .eyebrow.dark { color: #ffc1b2; }
.game-section .section-copy > p:not(.eyebrow) { color: #d7e8fb; }
.game-section .game-visual {
  min-height: 480px;
  background: #f8f5ee;
  border: 10px solid rgba(255,255,255,.15);
  border-radius: 240px 240px 34px 34px;
}
.game-visual::before,
.game-visual::after { border-radius: 18px; }
.game-section .button-dark { color: var(--primary); background: #fff; }
.game-section .feature-list li::before { border-color: var(--accent); border-radius: 4px; }

.benefit-grid { gap: 16px; }
.benefit {
  padding: 30px 24px;
  background: #fff;
  border: 0;
  border-left: 5px solid var(--accent);
  border-radius: 4px 22px 22px 4px;
  box-shadow: 0 14px 32px rgba(16,79,159,.08);
}
.benefit img { padding: 8px; background: #edf5ff; border-radius: 50%; }

.how-section { color: #fff; background: var(--accent); }
.how-section h2 { color: #fff; }
.how-section .eyebrow { color: #fff3ef; }
.steps { gap: 14px; background: transparent; }
.steps li { color: #172744; background: #fffaf4; border-radius: 16px 16px 4px 4px; }
.steps li > span { color: var(--primary); font-family: inherit; }
.steps h3 { color: #12325f; }
.steps p { color: #68768b; }

.responsible-section { background: #fff; }
.responsible-layout { padding: 34px; background: #f3f8ff; border: 1px solid #dce9f7; border-radius: 20px; }
.faq-preview { background: #f8f5ee; }
.faq-list { border-top-color: #cfd9e5; }
.faq-list details { border-bottom-color: #cfd9e5; }
.faq-list summary span { color: var(--accent); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 92px;
  color: #fff;
  background: linear-gradient(112deg, #104f9f 0%, #0872d8 100%);
  border-bottom: 0;
}
.page-hero::after {
  position: absolute;
  top: -180px;
  right: 5%;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}
.page-hero h1 { color: #fff; font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif; }
.page-hero p:last-child { color: #dcecff; }
.page-hero .eyebrow { color: #ffd0c5; }

.contact-method { background: #fff; border: 1px solid #dce7f3; border-top: 0; border-radius: 4px 22px 22px 4px; box-shadow: 0 14px 32px rgba(16,79,159,.07); }
.contact-method > span { color: #fff; background: var(--primary); border-radius: 10px; }
.legal-aside { background: #edf5ff; border-left-color: var(--accent); border-radius: 4px 18px 18px 4px; }
.legal-review { color: #77331f; background: #fff0eb; border-left-color: var(--accent); }

.site-footer { color: #cfe2fa; background: #082d5e; }
.site-footer h2,
.brand-footer { color: #fff; }
.site-footer a:not(.brand) { color: #cfe2fa; }
.site-footer a:hover { color: #ffb09d; }
.responsible-note { color: #ffe0d8; background: #54231d; }

@media (max-width: 980px) {
  .container { width: min(100% - 40px, 860px); }
  .hero-art { width: 50%; }
  body[data-page="home"] .hero-content > * { width: min(46%, 410px); }
  .desktop-nav { gap: 18px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 620px); }
  .site-header,
  .header-inner { height: 66px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .menu-toggle { color: var(--primary); }
  .mobile-menu { color: #17345e; background: #fff; border-bottom-color: #dce4ed; }
  .mobile-menu > a:not(.button) { border-bottom-color: #dce4ed; }
  .mobile-menu .button { color: #fff; background: var(--accent); }
  body[data-page="home"] .hero { min-height: 760px; height: auto; }
  .hero-art {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 330px;
    clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0 100%);
  }
  .hero-art > img {
    object-position: 42% center;
    transform: scale(1.14);
    transform-origin: 50% 100%;
  }
  body[data-page="home"] .hero-content {
    min-height: 0;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 370px;
  }
  body[data-page="home"] .hero-content > * { width: 100%; max-width: 100%; }
  body[data-page="home"] .hero h1 { font-size: clamp(48px, 15vw, 62px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { gap: 14px; }
  .hero-actions .button { width: min(100%, 320px); }
  .hero-game-badge { bottom: 18px; left: 16px; }
  .trust-grid { gap: 8px; padding: 16px 0; }
  .trust-item { padding: 14px 10px; border-bottom-color: #dfe6ef; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom-color: #dfe6ef; }
  .trust-item span { display: none; }
  .section { padding: 68px 0; }
  .game-section .game-visual { min-height: 340px; border-radius: 170px 170px 26px 26px; }
  .benefit { display: grid; }
  .steps { gap: 10px; }
  .responsible-layout { padding: 24px 18px; }
  .page-hero { padding: 72px 0 66px; }
  .mobile-download { color: #fff; background: var(--accent); }
  .mobile-download img { filter: brightness(0) invert(1); }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 28px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 1px solid #dfe6ef; }
}

/* CoflyRummy Festival Rush: playful casual-game visual system. */
body {
  color: #3d2450;
  background: #fff9ef;
  font-family: "Avenir Next", Avenir, ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  color: #53106d;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
}

.container { width: min(1180px, calc(100% - 56px)); }

.site-header,
.header-inner { height: 86px; }

.site-header {
  color: #4e1166;
  background: #fffdf8;
  border-bottom: 1px solid #f0d9c7;
  box-shadow: 0 9px 26px rgba(84, 12, 100, .12);
  backdrop-filter: none;
}

.brand { flex: 0 0 auto; }
.brand-logo { display: block; width: 212px; }
.brand-logo img { width: 100%; height: auto; }
.desktop-nav { gap: 30px; }
.desktop-nav a { color: #6d5475; font-size: 13px; font-weight: 800; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: #d92262; }

.button {
  border-radius: 999px;
  box-shadow: 0 8px 0 rgba(113, 13, 108, .2), 0 13px 25px rgba(83, 16, 109, .16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 0 rgba(113, 13, 108, .18), 0 17px 28px rgba(83, 16, 109, .18); }
.download-disabled { filter: saturate(.8); opacity: .7; }
.button-small,
.button-primary { color: #50106a; background: #ffc21c; border-color: #ffd862; }
.button-dark { color: #fff; background: #78107c; }
.button-outline { color: #6b0b7c; border-color: #6b0b7c; background: #fff; }

.suspension-banner {
  color: #fff;
  background: #92105f;
  border-bottom: 0;
}
.suspension-banner-inner { min-height: 48px; }
.suspension-icon { color: #65104e; background: #ffc21c; border: 0; border-radius: 50%; }
.suspension-banner p { font-size: 13px; letter-spacing: .01em; }

body[data-page="home"] .hero {
  position: relative;
  display: block;
  min-height: clamp(700px, 57vw, 820px);
  height: auto;
  color: #fff;
  background: #6b0b7c;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  background: #6b0b7c;
  clip-path: none;
}
.hero-art picture,
.hero-art picture > img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-art picture > img { object-fit: cover; object-position: center; transform: none; }

body[data-page="home"] .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(700px, 57vw, 820px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 44px;
  padding-bottom: 86px;
  width: min(1320px, calc(100% - 80px));
}
body[data-page="home"] .hero-content > * { width: min(44%, 545px); max-width: 545px; }
.hero-logo { width: min(44%, 540px) !important; max-width: 540px !important; margin: 0 0 8px; filter: drop-shadow(0 12px 16px rgba(65, 4, 72, .28)); }
body[data-page="home"] .hero h1 {
  margin: 0 0 14px;
  color: #fff8df;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 5px 0 #7b126f, 0 10px 22px rgba(57, 4, 68, .3);
}
body[data-page="home"] .hero h1 span { display: block; color: #ffc21c; }
.hero .eyebrow { margin-bottom: 10px; color: #fff; font-weight: 900; letter-spacing: .12em; text-shadow: 0 2px 6px rgba(79, 3, 70, .35); }
.hero-copy { color: #fff7e8; font-size: 18px; font-weight: 650; text-shadow: 0 2px 7px rgba(79, 3, 70, .45); }
.hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
.hero-actions .button { min-width: 250px; min-height: 58px; font-size: 17px; }
.hero-actions .button img { filter: brightness(0) saturate(100%) invert(12%) sepia(77%) saturate(4100%) hue-rotate(280deg) brightness(85%); }
.hero .text-link { color: #fff; font-weight: 900; text-shadow: 0 2px 6px rgba(79, 3, 70, .4); }
.hero-meta { color: #fff9e5; font-weight: 700; text-shadow: 0 2px 6px rgba(79, 3, 70, .4); }
.hero-meta span { color: #5d0a76; background: #fff8df; border-color: #ffc21c; border-radius: 999px; }

.hero-game-badge {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  left: auto;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  color: #5e146e;
  background: #fffaf0;
  border: 2px solid #ffd14a;
  border-radius: 18px;
  box-shadow: 0 9px 0 rgba(93, 9, 105, .18), 0 16px 28px rgba(79, 3, 70, .18);
  backdrop-filter: none;
}
.hero-game-badge > img { width: 42px; height: 42px; border-radius: 12px; }
.hero-game-badge strong { color: #671078; font-size: 14px; }
.hero-game-badge small { color: #9a456f; font-size: 10px; }

.trust-strip { color: #472c51; background: #fffdf8; border-bottom: 1px solid #f2ddcc; }
.trust-grid { min-height: 116px; }
.trust-item { border-right-color: #f1ddcf; }
.trust-item img { padding: 7px; background: #fff0be; border-radius: 50%; }
.trust-item strong { color: #6b0b7c; }
.trust-item span { color: #8d6c82; }

.section { padding: 92px 0; }
.section-muted { background: #fff0d5; }
.section-heading { margin-bottom: 44px; }
.eyebrow { color: #d72461; font-weight: 900; }
.eyebrow.dark { color: #d72461; }
.text-link,
.dark-link { color: #71107b; }

.game-section { color: #4a2b50; background: #fff8e8; }
.game-section h2 { color: #621078; }
.game-section .eyebrow.dark { color: #d72461; }
.game-section .section-copy > p:not(.eyebrow) { color: #7e5b77; }
.game-section .game-visual {
  min-height: 470px;
  background: #fff;
  border: 10px solid #ffc21c;
  border-radius: 42px;
  box-shadow: 0 18px 0 #d92864, 0 30px 46px rgba(109, 11, 124, .14);
}
.game-visual::before,
.game-visual::after { display: none; }
.game-section .button-dark { color: #fff; background: #73107d; }
.game-section .feature-list li::before { border-color: #f02e65; border-radius: 50%; }

.benefit-grid { gap: 18px; }
.benefit {
  padding: 30px 24px;
  background: #fffdf8;
  border: 0;
  border-top: 7px solid #ffc21c;
  border-radius: 24px;
  box-shadow: 0 12px 0 rgba(110, 14, 119, .08), 0 22px 34px rgba(110, 14, 119, .1);
}
.benefit:nth-child(2) { border-top-color: #f03a69; }
.benefit:nth-child(3) { border-top-color: #8e28c2; }
.benefit:nth-child(4) { border-top-color: #ff7b24; }
.benefit img { padding: 8px; background: #fff0bc; border-radius: 50%; }

.how-section { color: #fff; background: #76107d; }
.how-section h2 { color: #fff7df; }
.how-section .eyebrow { color: #ffc92f; }
.steps { gap: 14px; background: transparent; }
.steps li { color: #513052; background: #fffaf0; border-radius: 24px; box-shadow: 0 11px 0 rgba(49, 4, 63, .18); }
.steps li > span {
  flex: 0 0 48px;
  min-width: 48px;
  color: #d92763;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  line-height: 1;
  letter-spacing: -.04em;
  text-align: center;
  white-space: nowrap;
}
.steps h3 { color: #681176; }
.steps p { color: #86637d; }

.responsible-section { background: #fffdf8; }
.responsible-layout { padding: 34px; background: #fff0d5; border: 2px solid #ffd15a; border-radius: 28px; }
.faq-preview { background: #fff9ef; }
.faq-list { border-top-color: #e8cdbc; }
.faq-list details { border-bottom-color: #e8cdbc; }
.faq-list summary span { color: #d72461; }

.page-hero {
  overflow: hidden;
  padding: 94px 0 86px;
  color: #fff;
  background: #76107d;
  border-bottom: 10px solid #ffc21c;
}
.page-hero::after { display: none; }
.page-hero h1 { color: #fff7df; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; }
.page-hero p:last-child { color: #f7dff5; }
.page-hero .eyebrow { color: #ffc92f; }

.contact-method { background: #fffdf8; border: 2px solid #f0d9c7; border-top: 7px solid #ffc21c; border-radius: 22px; box-shadow: 0 14px 28px rgba(109, 11, 124, .08); }
.contact-method > span { color: #fff; background: #76107d; border-radius: 50%; }
.legal-aside { background: #fff0d5; border-left-color: #d72461; border-radius: 18px; }
.legal-review { color: #762342; background: #ffe1cf; border-left-color: #d72461; }

.site-footer { color: #f4dcec; background: #4b075c; }
.site-footer h2,
.brand-footer { color: #fff8df; }
.site-footer a:not(.brand) { color: #f4dcec; }
.site-footer a:hover { color: #ffc92f; }
.brand-footer .brand-logo { width: 220px; }
.responsible-note { color: #fff4cf; background: #7f104f; }

@media (max-width: 980px) {
  .container { width: min(100% - 40px, 860px); }
  .brand-logo { width: 180px; }
  .desktop-nav { gap: 17px; }
  body[data-page="home"] .hero-content > * { width: min(48%, 450px); }
  .hero-logo { width: min(48%, 420px) !important; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 620px); }
  .site-header,
  .header-inner { height: 68px; }
  .brand-logo { width: 164px; }
  .menu-toggle { color: #641078; }
  .mobile-menu { color: #5c2569; background: #fffdf8; border-bottom-color: #efd8c7; }
  .mobile-menu > a:not(.button) { border-bottom-color: #efd8c7; }
  .mobile-menu .button { color: #56106c; background: #ffc21c; }

  body[data-page="home"] .hero { min-height: 880px; }
  .hero-art { inset: 0; width: 100%; height: 100%; background: #ffad0b; clip-path: none; }
  .hero-art picture { height: calc(100% - 56px); margin-top: 56px; }
  .hero-art picture > img { object-position: center; transform: none; }
  body[data-page="home"] .hero-content {
    min-height: 880px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 390px;
    width: calc(100% - 28px);
  }
  body[data-page="home"] .hero-content > * { width: 100%; max-width: 100%; }
  .hero-logo { width: min(88%, 330px) !important; margin-bottom: 4px; }
  .hero .eyebrow { color: #65106f; text-shadow: none; }
  body[data-page="home"] .hero h1 {
    color: #5b0c72;
    font-size: clamp(44px, 13vw, 58px);
    text-shadow: 0 4px 0 rgba(255,255,255,.7);
  }
  body[data-page="home"] .hero h1 span { color: #d8215d; }
  .hero-copy { color: #6d2d5f; font-size: 16px; text-shadow: none; }
  .hero-actions { gap: 13px; }
  .hero-actions .button { width: min(100%, 310px); color: #fff; background: #d72461; border-color: #f45d82; }
  .hero-actions .button img { filter: brightness(0) invert(1); }
  .hero .text-link { color: #65106f; text-shadow: none; }
  .hero-meta { color: #702c5f; text-shadow: none; }
  .hero-meta span { color: #fff; background: #71107b; border-color: #71107b; }
  .hero-game-badge { right: auto; bottom: 18px; left: 16px; }

  .trust-grid { gap: 8px; padding: 16px 0; }
  .trust-item { padding: 14px 10px; border-bottom-color: #f0ddcf; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom-color: #f0ddcf; }
  .trust-item span { display: none; }
  .section { padding: 68px 0; }
  .game-section .game-visual { min-height: 340px; border-width: 7px; border-radius: 30px; box-shadow: 0 12px 0 #d92864; }
  .benefit { display: grid; }
  .steps { gap: 10px; }
  .responsible-layout { padding: 24px 18px; }
  .page-hero { padding: 70px 0 64px; }
  .mobile-download { color: #57106b; background: #ffc21c; }
  .mobile-download img { filter: brightness(0) saturate(100%) invert(12%) sepia(77%) saturate(4100%) hue-rotate(280deg) brightness(85%); }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 28px); }
  .brand-logo { width: 150px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 1px solid #f0ddcf; }
}
