/* Reefvoria — bright editorial gaming platform */
:root {
  --ink: #10223f;
  --muted: #627188;
  --teal: #0ea99b;
  --teal-dark: #087f78;
  --teal-soft: #daf8f2;
  --blue: #157cde;
  --blue-soft: #e6f3ff;
  --coral: #ff725c;
  --coral-soft: #fff0eb;
  --violet: #7958df;
  --surface: #ffffff;
  --canvas: #f6fbfb;
  --line: #dcebea;
  --yellow: #f5b93b;
  --shadow: 0 18px 50px rgba(22, 71, 89, .1);
  --shadow-sm: 0 8px 24px rgba(22, 71, 89, .08);
  --radius: 22px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 106px 0; }
.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; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 15px; border-radius: 8px; background: var(--ink); color: #fff; transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.trust-bar { position: relative; z-index: 100; min-height: 37px; color: #28445a; background: #e7faf7; font-size: 12px; letter-spacing: .02em; }
.trust-bar__inner { min-height: 37px; display: flex; align-items: center; gap: 13px; }
.trust-bar__inner strong { font-weight: 750; }
.trust-bar__divider { width: 1px; height: 12px; background: #a7d9d3; }
.trust-bar__location { margin-left: auto; display: flex; align-items: center; gap: 5px; font-weight: 700; }
.trust-bar__location svg { width: 14px; height: 14px; color: var(--teal-dark); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(14, 169, 155, .12); }

.site-header { position: sticky; z-index: 90; top: 0; background: rgba(255, 255, 255, .9); border-bottom: 1px solid rgba(215, 232, 232, .85); backdrop-filter: blur(18px); transition: box-shadow .25s, background .25s; }
.site-header.is-scrolled { box-shadow: 0 7px 28px rgba(18, 66, 79, .08); background: rgba(255, 255, 255, .97); }
.header-inner { height: 76px; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 43px; height: 43px; }
.brand__name { font-size: 24px; line-height: 1; font-weight: 850; letter-spacing: -.05em; }
.brand__name span { color: var(--teal); }
.main-nav { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.main-nav a { position: relative; color: #40516a; font-size: 14px; font-weight: 650; }
.main-nav a::after { content: ""; position: absolute; right: 50%; bottom: -10px; left: 50%; height: 2px; border-radius: 2px; background: var(--teal); transition: left .2s, right .2s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; left: 0; }
.header-cta { flex-shrink: 0; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 12px; background: var(--teal-soft); cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border: 1px solid var(--teal); border-radius: 12px; background: linear-gradient(135deg, var(--teal), #118aaf); box-shadow: 0 10px 26px rgba(14, 169, 155, .2); color: #fff; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14, 169, 155, .27); }
.button svg { width: 17px; height: 17px; transition: transform .2s; }
.button:hover svg { transform: translateX(3px); }
.button--small { min-height: 42px; padding: 0 17px; border-radius: 10px; font-size: 13px; }
.button--light { background: #fff; color: var(--teal-dark); border-color: #fff; box-shadow: 0 12px 28px rgba(0, 45, 55, .18); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #314861; font-size: 14px; font-weight: 750; }
.text-link:hover { color: var(--teal-dark); }
.text-link svg { width: 16px; height: 16px; }
.play-icon { width: 36px; height: 36px; display: inline-grid; place-items: center; padding-left: 2px; border: 1px solid #9acfc8; border-radius: 50%; background: rgba(255, 255, 255, .75); color: var(--teal-dark); font-size: 10px; }

.hero { position: relative; min-height: 760px; overflow: hidden; background: #eefbfc; }
.hero__art { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(247, 252, 254, .98) 0%, rgba(247, 252, 254, .91) 31%, rgba(247, 252, 254, .26) 60%, rgba(247, 252, 254, .03) 100%), url("../images/reefvoria-hero.webp"); background-size: cover; background-position: center; }
.hero__art::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 24px 24px, rgba(20, 126, 159, .11) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, #000, transparent 48%); opacity: .3; }
.hero__inner { position: relative; min-height: 625px; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(340px, .64fr); align-items: center; gap: 80px; padding-top: 45px; padding-bottom: 54px; }
.hero__copy { max-width: 680px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--teal-dark); font-size: 12px; line-height: 1.2; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow span { padding: 5px 7px; border-radius: 7px; background: var(--teal); color: #fff; font-size: 10px; letter-spacing: .08em; }
.eyebrow--coral { color: var(--coral); }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.08; letter-spacing: -.045em; }
.hero h1 { max-width: 680px; font-size: clamp(55px, 5.2vw, 82px); }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero__lead { max-width: 630px; margin: 25px 0 30px; color: #4b6279; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 25px; }
.hero__meta { display: flex; align-items: center; gap: 13px; margin-top: 36px; color: #53687b; font-size: 12px; }
.avatar-stack { display: flex; padding-left: 10px; }
.avatar-stack span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -10px; border: 3px solid #fff; border-radius: 50%; background: #b7e8e4; color: #175b66; font-size: 9px; font-weight: 850; }
.avatar-stack span:nth-child(2) { background: #ffd9cc; color: #914535; }
.avatar-stack span:nth-child(3) { background: #dcd5ff; color: #513bab; }
.hero__meta > div:nth-child(2) { display: flex; flex-direction: column; }
.hero__meta strong { color: var(--ink); font-size: 13px; }
.hero__rating { min-height: 35px; display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 4px; margin-left: 12px; padding-left: 22px; border-left: 1px solid #c8dfdf; }
.hero__rating span { grid-row: span 2; color: var(--yellow); font-size: 18px; }
.hero__rating small { color: #6d7c8e; font-size: 10px; }

.now-playing { position: relative; align-self: center; width: 390px; margin-left: auto; padding: 9px; border: 1px solid rgba(255, 255, 255, .9); border-radius: 24px; background: rgba(255, 255, 255, .82); box-shadow: 0 25px 65px rgba(24, 89, 100, .2); backdrop-filter: blur(15px); transform: rotate(1.2deg); }
.now-playing::before, .now-playing::after { content: ""; position: absolute; z-index: -1; width: 58px; height: 58px; border-radius: 18px; transform: rotate(25deg); }
.now-playing::before { top: -25px; right: -28px; background: rgba(255, 123, 94, .75); box-shadow: 0 8px 26px rgba(255, 114, 92, .3); }
.now-playing::after { bottom: -22px; left: -29px; background: rgba(103, 85, 224, .7); box-shadow: 0 8px 26px rgba(103, 85, 224, .25); }
.now-playing__top { min-height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 9px; color: #526476; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.now-playing__top span { display: flex; align-items: center; gap: 7px; }
.now-playing__top i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }
.now-playing > img { width: 100%; height: 173px; border-radius: 17px; object-fit: cover; }
.now-playing__body { padding: 20px 17px 17px; }
.mini-label { color: var(--teal-dark); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.now-playing h2 { margin-top: 2px; font-size: 27px; }
.now-playing__score { display: flex; align-items: baseline; gap: 4px; margin-top: 11px; }
.now-playing__score strong { font-size: 22px; }
.now-playing__score span { color: #81909f; font-size: 12px; }
.stars { margin-left: 8px; color: var(--yellow); font-size: 12px; letter-spacing: 1px; }
.now-playing__body > a { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.now-playing__body > a svg { width: 16px; height: 16px; }

.assurance-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 100px; margin-bottom: -47px; border: 1px solid rgba(210, 232, 231, .9); border-radius: 20px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow); }
.assurance-grid > div { display: flex; align-items: center; gap: 13px; padding: 23px 21px; }
.assurance-grid > div + div { border-left: 1px solid var(--line); }
.assurance-icon { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 43px; border-radius: 13px; font-size: 13px; font-weight: 900; }
.assurance-icon svg { width: 22px; height: 22px; }
.assurance-icon--a { color: #17866f; background: #dff8ec; }
.assurance-icon--b { color: #a46a00; background: #fff3ce; }
.assurance-icon--c { color: #7251bb; background: #eee7ff; }
.assurance-icon--d { color: #2377b9; background: #e1f2ff; }
.assurance-grid p { display: flex; flex-direction: column; margin: 0; }
.assurance-grid strong { font-size: 13px; line-height: 1.3; }
.assurance-grid small { margin-top: 3px; color: #7c8b98; font-size: 10px; line-height: 1.3; }

.section-heading { margin-bottom: 44px; }
.section-heading h2, .method h2, .faq h2 { font-size: clamp(36px, 4vw, 53px); }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading--split .eyebrow { margin-bottom: 12px; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { margin: 14px auto 0; }

.weekly { padding-top: 145px; background: #fff; }
.featured-game { display: grid; grid-template-columns: 1.33fr .85fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.featured-game__image { position: relative; min-height: 515px; overflow: hidden; }
.featured-game__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 55%, rgba(8, 41, 60, .22)); }
.featured-game__image > img { width: 100%; height: 100%; object-fit: cover; }
.rank-badge { position: absolute; z-index: 2; right: 28px; bottom: 28px; width: 105px; height: 105px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 5px solid rgba(255, 255, 255, .8); border-radius: 50%; background: var(--coral); box-shadow: 0 13px 32px rgba(53, 27, 26, .25); color: #fff; transform: rotate(-5deg); }
.rank-badge small { font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.rank-badge strong { font-size: 30px; line-height: 1; }
.rank-badge span { font-size: 8px; font-weight: 800; }
.featured-game__content { padding: 48px 46px 42px; }
.platform-line { display: flex; flex-wrap: wrap; gap: 7px; }
.platform-line span { padding: 5px 8px; border: 1px solid #c7dfdf; border-radius: 6px; color: #507078; font-size: 8px; font-weight: 850; letter-spacing: .05em; }
.featured-game__content h3 { margin-top: 18px; font-size: 39px; }
.featured-game__dek { margin: 15px 0 25px; color: #50647a; line-height: 1.65; }
.score-bars { display: grid; gap: 15px; margin: 24px 0; }
.score-bars > div { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 12px; color: #506075; font-size: 11px; }
.score-bars strong { color: var(--ink); font-size: 12px; }
.score-bars i { grid-column: span 2; height: 5px; overflow: hidden; border-radius: 5px; background: #e8f0f0; }
.score-bars i::after { content: ""; display: block; width: var(--score); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), #4acebb); }
.verdict { margin: 27px 0 25px; padding: 17px 18px; border-left: 3px solid var(--coral); background: var(--coral-soft); }
.verdict strong { color: #a84939; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.verdict p { margin: 5px 0 0; color: #675451; font-size: 12px; line-height: 1.55; }
.featured-game__content .button { width: 100%; }
.external-note { display: block; margin-top: 10px; color: #8a97a5; text-align: center; font-size: 9px; }

.catalogue { background: var(--canvas); }
.catalogue-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-chip { min-height: 39px; padding: 0 16px; border: 1px solid #c9dddd; border-radius: 20px; background: #fff; color: #647487; font-size: 12px; font-weight: 750; cursor: pointer; transition: color .2s, border-color .2s, background .2s, transform .2s; }
.filter-chip:hover { transform: translateY(-1px); border-color: var(--teal); color: var(--teal-dark); }
.filter-chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.search-field { width: 220px; height: 42px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; padding: 0 13px; border: 1px solid #c9dddd; border-radius: 12px; background: #fff; }
.search-field:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14, 169, 155, .1); }
.search-field svg { width: 17px; height: 17px; color: #829198; }
.search-field input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.game-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 4px 14px rgba(31, 75, 82, .04); transition: transform .25s, box-shadow .25s, border-color .25s; }
.game-card:hover { transform: translateY(-6px); border-color: #b9deda; box-shadow: 0 18px 38px rgba(25, 77, 85, .12); }
.game-card[hidden] { display: none; }
.game-card__art { position: relative; height: 164px; overflow: hidden; background: #cce9e8; }
.game-card__art::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(8, 31, 45, .36)); }
.game-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.game-card:hover .game-card__art img { transform: scale(1.045); }
.game-tag { position: absolute; z-index: 2; bottom: 12px; left: 13px; padding: 5px 9px; border: 1px solid rgba(255, 255, 255, .45); border-radius: 7px; background: rgba(11, 40, 52, .66); backdrop-filter: blur(7px); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .04em; }
.card-score { position: absolute; z-index: 2; top: 11px; right: 11px; width: 44px; height: 44px; display: grid; place-items: center; border: 2px solid rgba(255, 255, 255, .9); border-radius: 50%; background: rgba(10, 132, 122, .92); box-shadow: 0 5px 15px rgba(0, 36, 44, .18); color: #fff; font-size: 13px; font-weight: 900; }
.card-score--top { background: rgba(247, 101, 79, .95); }
.game-card__body { padding: 20px 20px 18px; }
.card-kicker { color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.game-card h3 { margin: 4px 0 9px; font-size: 23px; letter-spacing: -.035em; }
.game-card p { min-height: 62px; margin: 0 0 16px; color: #657488; font-size: 12px; line-height: 1.65; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 0; border-top: 1px solid #e7efef; border-bottom: 1px solid #e7efef; color: #6f7e8e; font-size: 9px; font-weight: 650; }
.card-meta span:last-child { flex-shrink: 0; color: var(--teal-dark); }
.game-card__body > a { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; color: #25455e; font-size: 11px; font-weight: 800; }
.game-card__body > a:hover { color: var(--teal-dark); }
.game-card__body > a svg { width: 15px; height: 15px; }
.empty-state { padding: 45px; border: 1px dashed #bdd8d7; border-radius: 18px; background: #fff; color: var(--muted); text-align: center; }
.quick-picks { display: grid; grid-template-columns: .65fr 1.4fr; gap: 40px; align-items: center; margin-top: 40px; padding: 28px 30px; border: 1px solid #cce3e1; border-radius: 22px; background: linear-gradient(135deg, #ecfffb, #f1f7ff); }
.quick-picks h3 { margin: 3px 0 7px; font-size: 25px; }
.quick-picks p { margin: 0; color: var(--muted); font-size: 12px; }
.quick-picks__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.quick-picks__links a { min-width: 0; display: grid; grid-template-columns: 39px 1fr auto; grid-template-rows: auto auto; align-items: center; column-gap: 10px; padding: 10px; border: 1px solid rgba(191, 218, 217, .8); border-radius: 13px; background: rgba(255, 255, 255, .75); transition: background .2s, transform .2s; }
.quick-picks__links a:hover { transform: translateY(-2px); background: #fff; }
.quick-picks__links strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.quick-picks__links small { grid-column: 2; color: #7a8795; font-size: 8px; }
.quick-picks__links b { grid-column: 3; grid-row: 1 / 3; color: #75908f; font-size: 13px; }
.quick-logo { grid-row: 1 / 3; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 10px; color: #fff; font-size: 12px; font-weight: 950; }
.quick-logo--fortnite { background: linear-gradient(135deg, #1985df, #7046d9); }
.quick-logo--valorant { background: linear-gradient(135deg, #fa566d, #af2344); }
.quick-logo--rocket { background: linear-gradient(135deg, #1464bb, #16a9de); }
.quick-logo--genshin { background: linear-gradient(135deg, #4875ab, #916eb8); }

.method { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.method::before { content: ""; position: absolute; top: -300px; left: -250px; width: 650px; height: 650px; border: 1px solid rgba(85, 218, 204, .15); border-radius: 50%; box-shadow: 0 0 0 90px rgba(85, 218, 204, .025), 0 0 0 180px rgba(85, 218, 204, .02); }
.method__grid { position: relative; display: grid; grid-template-columns: .75fr 1.1fr; gap: 100px; align-items: start; }
.method h2 { color: #fff; }
.method__copy > p { max-width: 475px; margin: 22px 0 25px; color: #aebcce; }
.text-link--dark { color: #7ce1d5; }
.method-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.method-list li { display: grid; grid-template-columns: 65px 1fr; gap: 18px; padding: 0 0 28px; position: relative; }
.method-list li:not(:last-child)::after { content: ""; position: absolute; top: 49px; bottom: 5px; left: 25px; width: 1px; background: linear-gradient(#4b6a7c, transparent); }
.method-list li > span { width: 51px; height: 51px; display: grid; place-items: center; border: 1px solid rgba(90, 213, 202, .36); border-radius: 15px; background: rgba(52, 205, 188, .09); color: #71dacf; font-size: 12px; font-weight: 900; }
.method-list h3 { margin: 2px 0 8px; color: #fff; font-family: inherit; font-size: 17px; letter-spacing: -.01em; }
.method-list p { margin: 0; color: #9eacbd; font-size: 12px; line-height: 1.65; }
.rating-scale { position: relative; display: grid; grid-template-columns: .5fr 1.5fr; gap: 40px; align-items: center; margin-top: 55px; padding: 27px 31px; border: 1px solid rgba(121, 187, 184, .2); border-radius: 20px; background: rgba(255, 255, 255, .045); }
.rating-scale h3 { margin-top: 3px; color: #fff; font-family: inherit; font-size: 18px; letter-spacing: -.01em; }
.scale { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 11px; }
.scale i { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #fff; font-style: normal; }
.scale b { font-size: 13px; }
.scale small { font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.scale--skip { background: #7d5a7d; }
.scale--fair { background: #33729d; }
.scale--great { background: #138f8a; }
.scale--excellent { background: #ff735c; }

.voices { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-grid blockquote { position: relative; margin: 0; padding: 30px 27px 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.quote-mark { position: absolute; top: 18px; right: 24px; color: #d7f1ed; font-family: Georgia, serif; font-size: 63px; line-height: 1; }
.testimonial-grid blockquote > p { position: relative; min-height: 114px; margin: 0; padding-top: 14px; color: #52657a; font-size: 14px; line-height: 1.75; }
.testimonial-grid footer { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-grid footer > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); font-size: 10px; font-weight: 850; }
.testimonial-grid footer div { display: flex; flex-direction: column; }
.testimonial-grid footer strong { font-size: 11px; }
.testimonial-grid footer small { color: #8a97a5; font-size: 8px; }
.testimonial-grid footer b { color: var(--yellow); font-size: 9px; letter-spacing: 1px; }
.testimonial-note { max-width: 720px; margin: 20px auto 0; color: #8b98a5; text-align: center; font-size: 9px; }

.faq { background: #f5fbfb; }
.faq__grid { display: grid; grid-template-columns: .7fr 1.25fr; gap: 100px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro > p { margin: 22px 0 0; color: var(--muted); }
.faq__intro a { color: var(--teal-dark); font-weight: 700; }
.accordion { border-top: 1px solid #cfe0e0; }
.accordion details { border-bottom: 1px solid #cfe0e0; }
.accordion summary { position: relative; padding: 24px 44px 24px 0; list-style: none; cursor: pointer; color: #243a53; font-size: 15px; font-weight: 780; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 50%; right: 9px; width: 13px; height: 1.5px; background: var(--teal-dark); transition: transform .2s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { margin: -6px 50px 24px 0; color: #637389; font-size: 13px; line-height: 1.72; }

.final-cta { padding: 75px 0; background: #fff; }
.final-cta__inner { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px 57px; border-radius: 28px; background: linear-gradient(125deg, #0b968c, #126da0); box-shadow: 0 24px 55px rgba(11, 125, 133, .25); color: #fff; }
.final-cta__inner::before { content: ""; position: absolute; right: -50px; bottom: -110px; width: 300px; height: 300px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 45% 55% 62% 38%; box-shadow: 0 0 0 45px rgba(255, 255, 255, .035), 0 0 0 90px rgba(255, 255, 255, .025); transform: rotate(25deg); }
.final-cta .eyebrow { margin-bottom: 10px; color: #a7fff5; }
.final-cta h2 { color: #fff; font-size: clamp(35px, 4vw, 49px); }
.final-cta p { margin: 11px 0 0; color: #d3eeee; }
.final-cta .button { position: relative; flex-shrink: 0; }

.site-footer { padding-top: 68px; background: #0d1c33; color: #aeb9ca; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .85fr 1.1fr; gap: 55px; padding-bottom: 48px; }
.brand--footer .brand__name { color: #fff; }
.footer-brand p { max-width: 335px; margin: 17px 0 13px; color: #9ba8ba; font-size: 12px; line-height: 1.7; }
.footer-brand > a:last-child { color: #70d8ce; font-size: 12px; font-weight: 700; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-nav strong, .footer-promise > strong { margin-bottom: 6px; color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav a, .footer-nav button { padding: 0; border: 0; background: none; color: #9ba8ba; font-size: 11px; cursor: pointer; }
.footer-nav a:hover, .footer-nav button:hover { color: #70d8ce; }
.footer-promise { padding: 18px 20px; border: 1px solid rgba(111, 209, 201, .17); border-radius: 15px; background: rgba(73, 203, 190, .055); }
.footer-promise p { display: flex; align-items: center; gap: 8px; margin: 8px 0; color: #aeb9c8; font-size: 10px; }
.footer-promise p span { color: #65d4c7; }
.footer-disclaimer { padding: 21px 0; border-top: 1px solid #243147; border-bottom: 1px solid #243147; }
.footer-disclaimer p { margin: 0; color: #77869a; font-size: 9px; line-height: 1.75; }
.footer-disclaimer strong { color: #a3afbd; }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; color: #77869a; font-size: 10px; }
.footer-bottom b { margin-left: 5px; color: var(--coral); }

.cookie-banner { position: fixed; z-index: 200; right: 20px; bottom: 20px; width: min(520px, calc(100% - 40px)); display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 15px; padding: 17px; border: 1px solid #cce3e1; border-radius: 17px; background: rgba(255, 255, 255, .98); box-shadow: 0 20px 60px rgba(15, 54, 67, .2); backdrop-filter: blur(15px); }
.cookie-banner[hidden] { display: none; }
.cookie-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--teal-soft); color: var(--teal-dark); font-size: 26px; }
.cookie-banner strong { display: block; font-size: 12px; }
.cookie-banner p { margin: 3px 0; color: #68778a; font-size: 9px; line-height: 1.45; }
.cookie-banner a { color: var(--teal-dark); font-size: 9px; font-weight: 750; }

/* Legal pages */
.legal-page { background: var(--canvas); }
.legal-hero { padding: 80px 0 70px; background: linear-gradient(145deg, #e5faf7, #eef6ff); border-bottom: 1px solid var(--line); }
.legal-hero__inner { max-width: 850px; }
.legal-hero h1 { font-size: clamp(45px, 6vw, 70px); }
.legal-hero p { max-width: 700px; margin: 20px 0 0; color: #53677d; font-size: 17px; }
.legal-hero__meta { display: flex; gap: 20px; margin-top: 24px; color: #718296; font-size: 11px; font-weight: 700; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: 70px; align-items: start; padding: 70px 0 100px; }
.legal-toc { position: sticky; top: 112px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.legal-toc strong { display: block; margin-bottom: 11px; color: var(--ink); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 7px 0; color: #6c7b8d; font-size: 11px; }
.legal-toc a:hover { color: var(--teal-dark); }
.legal-content { padding: 40px 45px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.legal-content h2 { margin: 42px 0 12px; padding-top: 8px; font-family: inherit; font-size: 23px; letter-spacing: -.025em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 25px 0 8px; font-family: inherit; font-size: 16px; letter-spacing: -.01em; }
.legal-content p, .legal-content li { color: #5f7084; font-size: 13px; line-height: 1.78; }
.legal-content ul { padding-left: 20px; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-callout { margin: 25px 0; padding: 18px 20px; border-left: 3px solid var(--teal); background: var(--teal-soft); color: #405c63; font-size: 12px; }
.legal-callout--warning { border-color: var(--coral); background: var(--coral-soft); }
.cookie-table { width: 100%; margin: 20px 0; border-collapse: collapse; }
.cookie-table th, .cookie-table td { padding: 12px; border: 1px solid var(--line); color: #5f7084; font-size: 11px; text-align: left; vertical-align: top; }
.cookie-table th { background: #f4f9f9; color: var(--ink); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero__copy.reveal, .now-playing.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero__inner { grid-template-columns: 1fr 340px; gap: 25px; }
  .now-playing { width: 335px; }
  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
  .assurance-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .assurance-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .method__grid { gap: 55px; }
  .faq__grid { gap: 55px; }
  .footer-main { grid-template-columns: 1.4fr .7fr .85fr; }
  .footer-promise { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px 20px; }
  .footer-promise > strong { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 30px, var(--container)); }
  .section { padding: 80px 0; }
  .trust-bar__inner > span:not(.pulse-dot):not(.trust-bar__location), .trust-bar__divider { display: none; }
  .header-inner { height: 68px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 68px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 25px 28px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 20px 35px rgba(10, 48, 63, .12); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s, transform .2s, visibility .2s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid #edf2f2; font-size: 15px; }
  .hero { min-height: 0; }
  .hero__art { background-image: linear-gradient(180deg, rgba(247, 252, 254, .92), rgba(247, 252, 254, .65)), url("../images/reefvoria-hero.webp"); background-position: 62% center; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 35px; padding: 75px 0 105px; }
  .hero__copy { max-width: 640px; }
  .hero h1 { font-size: clamp(49px, 10vw, 72px); }
  .now-playing { width: min(100%, 450px); margin: 0; transform: none; }
  .now-playing > img { height: auto; aspect-ratio: 460 / 215; }
  .assurance-grid { margin-bottom: -80px; }
  .weekly { padding-top: 160px; }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 18px; }
  .featured-game { grid-template-columns: 1fr; }
  .featured-game__image { min-height: 340px; }
  .catalogue-tools { align-items: stretch; flex-direction: column; }
  .search-field { width: 100%; }
  .quick-picks { grid-template-columns: 1fr; gap: 20px; }
  .method__grid { grid-template-columns: 1fr; }
  .method__copy > p { max-width: 650px; }
  .rating-scale { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid blockquote > p { min-height: auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
  .footer-promise { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; }
  .legal-toc { position: static; display: none; }
}

@media (max-width: 570px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 68px 0; }
  .trust-bar__location { font-size: 10px; }
  .brand__name { font-size: 21px; }
  .brand img { width: 39px; height: 39px; }
  .hero__inner { padding: 60px 0 95px; }
  .hero h1 { font-size: 48px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .text-link { justify-content: center; }
  .hero__meta { flex-wrap: wrap; }
  .hero__rating { margin-left: 0; }
  .now-playing::before { right: -8px; }
  .now-playing::after { left: -8px; }
  .assurance-grid { grid-template-columns: 1fr; }
  .assurance-grid > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .weekly { padding-top: 200px; }
  .section-heading h2, .method h2, .faq h2 { font-size: 37px; }
  .featured-game__image { min-height: 245px; }
  .rank-badge { right: 15px; bottom: 15px; width: 88px; height: 88px; }
  .featured-game__content { padding: 30px 22px 26px; }
  .featured-game__content h3 { font-size: 32px; }
  .filter-row { flex-wrap: nowrap; margin-right: -12px; padding: 0 12px 5px 0; overflow-x: auto; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-chip { flex-shrink: 0; }
  .game-grid { grid-template-columns: 1fr; }
  .game-card__art { height: auto; aspect-ratio: 460 / 215; }
  .quick-picks { padding: 23px 18px; }
  .quick-picks__links { grid-template-columns: 1fr; }
  .method-list li { grid-template-columns: 52px 1fr; gap: 14px; }
  .rating-scale { padding: 22px 16px; }
  .scale { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { padding: 38px 25px; }
  .final-cta .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 40px 1fr; }
  .cookie-banner .button { grid-column: 1 / -1; width: 100%; }
  .legal-hero { padding: 60px 0 50px; }
  .legal-hero h1 { font-size: 43px; }
  .legal-layout { padding: 35px 0 70px; }
  .legal-content { padding: 28px 20px; }
  .cookie-table { display: block; overflow-x: auto; white-space: nowrap; }
}
