/* Arena of Honor — global stylesheet */

/* Fonts */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/assets/fonts/cinzel-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}

:root {
  --c-bg: #0E1116;
  --c-bg-2: #141A24;
  --c-bg-3: #1B2330;
  --c-panel: rgba(27, 35, 48, .66);
  --c-gold: #C9A24B;
  --c-gold-2: #E3C277;
  --c-ruby: #8E2434;
  --c-ruby-2: #C0344B;
  --c-text: #EDE7D8;
  --c-muted: rgba(237, 231, 216, .64);
  --c-faint: rgba(237, 231, 216, .42);
  --c-line: rgba(201, 162, 75, .18);
  --c-line-2: rgba(237, 231, 216, .10);
  --grad-gold: linear-gradient(135deg, #E3C277 0%, #C9A24B 55%, #9C7A2E 100%);
  --grad-dark: linear-gradient(180deg, #141A24 0%, #0E1116 100%);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --radius: 16px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .45);
  --header-offset: 70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  background-image:
    radial-gradient(900px 600px at 85% -5%, rgba(201, 162, 75, .10), transparent 60%),
    radial-gradient(700px 500px at 0% 30%, rgba(142, 36, 52, .10), transparent 55%);
  background-attachment: fixed;
}
main { flex: 1; }
img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-break: break-word; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
p { overflow-wrap: break-word; word-break: break-word; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 28px; }
@media (max-width: 820px) { .container { padding-inline: 20px; } }
@media (max-width: 430px) { .container { padding-inline: 15px; } }

.section { padding-block: 92px; position: relative; }
@media (max-width: 820px) { .section { padding-block: 64px; } }

.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;
}

/* Section heading block */
.shead { margin-bottom: 48px; }
.shead h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  color: var(--c-text);
}
.shead h2 .hl { color: var(--c-gold-2); }
.shead p { margin-top: 16px; color: var(--c-muted); font-size: clamp(16px, 1.6vw, 19px); }
.shead--center { text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 13px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 16px;
}
.kicker::before {
  content: ''; width: 26px; height: 2px; background: var(--grad-gold);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 16px;
  letter-spacing: .04em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
.btn svg { width: 20px; height: 20px; }
.btn--gold {
  background: var(--grad-gold);
  color: #2A1E07;
  box-shadow: 0 14px 34px rgba(201, 162, 75, .32);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(201, 162, 75, .46); }
.btn--ghost {
  background: rgba(237, 231, 216, .04);
  border-color: var(--c-line);
  color: var(--c-text);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold-2); transform: translateY(-3px); }
.btn--lg { padding: 18px 40px; font-size: 18px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 17, 22, .78);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
  transition: background .3s var(--ease);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 35% 25%, rgba(201, 162, 75, .28), rgba(20, 26, 36, .9));
  border: 1px solid var(--c-line);
}
.brand__mark svg { width: 26px; height: 26px; color: var(--c-gold-2); }
.brand__name {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 21px;
  letter-spacing: .04em; color: var(--c-text); line-height: 1.05;
}
.brand__name b { color: var(--c-gold-2); font-weight: 700; }
.brand__name span { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--c-faint); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 15px;
  letter-spacing: .05em;
  color: var(--c-muted);
  padding: 9px 16px 9px 24px;
  border-radius: 10px;
  transition: color .3s var(--ease), text-shadow .3s var(--ease), background .3s var(--ease);
}
/* rune-diamond marker instead of underline/dot */
.nav a::before {
  content: '';
  position: absolute; left: 9px; top: 50%;
  width: 7px; height: 7px;
  margin-top: -3.5px;
  background: var(--grad-gold);
  transform: translateX(-6px) rotate(45deg) scale(.2);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .35s var(--ease);
}
.nav a:hover, .nav a.is-active {
  color: var(--c-gold-2);
  text-shadow: 0 0 22px rgba(201, 162, 75, .55);
  background: rgba(201, 162, 75, .06);
}
.nav a:hover::before, .nav a.is-active::before {
  transform: translateX(0) rotate(45deg) scale(1);
  opacity: 1;
}
.nav .nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 10px; padding: 10px 20px;
  color: #2A1E07; background: var(--grad-gold);
  border-radius: 999px; letter-spacing: .05em;
  box-shadow: 0 10px 24px rgba(201, 162, 75, .28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav .nav__cta svg { width: 18px; height: 18px; }
.nav .nav__cta::before { display: none; }
.nav .nav__cta:hover { color: #2A1E07; background: var(--grad-gold); text-shadow: none; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 75, .42); }

.burger {
  display: none; width: 46px; height: 46px; position: relative; z-index: 110;
  flex-shrink: 0; border-radius: 12px;
  background: rgba(201, 162, 75, .06);
  border: 1px solid var(--c-line); cursor: pointer;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent; user-select: none;
}
.burger span {
  position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px;
  background: var(--c-gold-2);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 70px)); z-index: 100; box-sizing: border-box;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 22px 28px;
    background: linear-gradient(165deg, #141A24 0%, #0E1116 100%);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a {
    width: 100%; padding: 16px 8px; font-size: 20px; border-bottom: 1px solid var(--c-line-2);
  }
  .nav a::before { left: 0; top: 50%; }
  .nav a:hover, .nav a.is-active { background: transparent; }
  .nav .nav__cta {
    justify-content: center; width: 100%; margin: 18px 0 0;
    padding: 16px; font-size: 18px; border-bottom: 0;
  }
  .nav .nav__cta svg { width: 20px; height: 20px; }
  body[data-nav-open="true"] { overflow: hidden; }
  body[data-nav-open="true"] .site-header {
    position: fixed; top: 0; left: 0; right: 0;
    backdrop-filter: none; -webkit-backdrop-filter: none; background-color: var(--c-bg);
  }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(96px, 16vh, 168px);
  background-image:
    linear-gradient(180deg, rgba(14, 17, 22, .58) 0%, rgba(14, 17, 22, .82) 62%, var(--c-bg) 100%),
    url('/assets/img/hero/hero-bg.avif');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero__mist {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 100%, rgba(201, 162, 75, .14), transparent 70%);
  animation: mist 14s var(--ease) infinite alternate;
}
@keyframes mist { from { transform: translateY(10px) scale(1); opacity: .7; } to { transform: translateY(-12px) scale(1.06); opacity: 1; } }
.hero__inner { position: relative; z-index: 2; max-width: 980px; }
.hero h1 {
  font-size: clamp(38px, 7vw, 84px);
  line-height: 1.04;
  color: var(--c-text);
}
.hero h1 .hl {
  display: inline-block;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead {
  margin-top: 26px; font-size: clamp(17px, 2vw, 22px); color: var(--c-muted);
  max-width: 720px;
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__note { display: inline-flex; align-items: center; gap: 9px; color: var(--c-faint); font-size: 14px; }
.hero__note svg { width: 18px; height: 18px; color: var(--c-gold); }
.hero__stats {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 38px;
  padding-top: 30px; border-top: 1px solid var(--c-line);
}
.hero__stat b {
  display: block; font-family: 'Cinzel', serif; font-size: clamp(28px, 4vw, 40px);
  color: var(--c-gold-2); line-height: 1;
}
.hero__stat span { font-size: 14px; color: var(--c-muted); letter-spacing: .04em; }

/* Forged shield — centered backdrop behind hero content */
.hero__shield {
  position: absolute; left: 50%; top: 50%;
  width: clamp(360px, 56vw, 760px); height: clamp(360px, 56vw, 760px);
  transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none; opacity: .16;
  color: var(--c-gold);
  filter: drop-shadow(0 0 60px rgba(201, 162, 75, .35));
}
.hero__shield svg { width: 100%; height: 100%; }
.hero__shield .ring { animation: forge 2.6s var(--ease) both; transform-box: fill-box; transform-origin: center; }
.hero__shield .rune { stroke-dasharray: 120; stroke-dashoffset: 120; animation: draw 2.8s var(--ease) .5s forwards; }
@keyframes forge { 0% { opacity: 0; transform: scale(.6) rotate(-18deg); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Above-fold rise (pure CSS, not JS reveal, no chip) */
.rise { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease) forwards; }
.rise-1 { animation-delay: .05s; } .rise-2 { animation-delay: .18s; }
.rise-3 { animation-delay: .31s; } .rise-4 { animation-delay: .44s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Feature cards */
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  position: relative; padding: 32px 26px; border-radius: var(--radius);
  background: var(--grad-dark); border: 1px solid var(--c-line);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.feature::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(201, 162, 75, .14), transparent 55%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.feature:hover { transform: translateY(-8px); border-color: var(--c-gold); box-shadow: var(--shadow); }
.feature:hover::after { opacity: 1; }
.feature__ico {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201, 162, 75, .1); border: 1px solid var(--c-line);
  color: var(--c-gold-2); margin-bottom: 20px;
}
.feature__ico svg { width: 30px; height: 30px; }
.feature h3 { font-size: 21px; color: var(--c-text); margin-bottom: 10px; }
.feature p { color: var(--c-muted); font-size: 15.5px; }

/* Steps / how it works */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  padding: 34px 28px; border-radius: var(--radius);
  background: var(--c-panel); border: 1px solid var(--c-line-2);
  position: relative;
}
.step__n {
  font-family: 'Cinzel', serif; font-size: 46px; color: var(--c-gold);
  opacity: .35; line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; color: var(--c-text); }
.step p { color: var(--c-muted); font-size: 15.5px; }

/* Reviews carousel */
.reviews { background: linear-gradient(180deg, var(--c-bg) 0%, #0B0E13 100%); }
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.review {
  flex: 0 0 100%; padding: 8px;
}
.review__card {
  background: var(--grad-dark); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.review__photo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--c-gold); padding: 4px; background: var(--c-bg-2);
}
.review__stars { display: flex; gap: 4px; color: var(--c-gold-2); margin-bottom: 14px; }
.review__stars svg { width: 20px; height: 20px; }
.review__text { font-size: clamp(17px, 2vw, 21px); color: var(--c-text); line-height: 1.6; font-style: italic; }
.review__who { margin-top: 18px; font-family: 'Cinzel', serif; color: var(--c-gold-2); font-size: 17px; }
.review__who span { display: block; font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--c-faint); letter-spacing: .03em; font-style: normal; }
.carousel__nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 30px; }
.carousel__btn {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201, 162, 75, .06); border: 1px solid var(--c-line); color: var(--c-gold-2);
  cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.carousel__btn:hover { background: rgba(201, 162, 75, .16); transform: scale(1.08); }
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__dots { display: flex; gap: 9px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-line); border: 0; cursor: pointer; padding: 0; transition: background .3s var(--ease), transform .3s var(--ease); }
.carousel__dot.is-active { background: var(--grad-gold); transform: scale(1.25); }

/* Demo game */
.demo__frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--c-line); box-shadow: var(--shadow);
  background: var(--c-bg-2);
}
.demo__frame iframe { width: 100%; height: 620px; border: 0; display: block; }
.demo__bar {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: linear-gradient(90deg, rgba(201, 162, 75, .1), transparent);
  border-bottom: 1px solid var(--c-line); color: var(--c-muted); font-size: 14px;
}
.demo__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--c-ruby-2); display: inline-block; }
.demo__bar i:nth-child(2) { background: var(--c-gold); }
.demo__bar i:nth-child(3) { background: #4d7c5a; }
.demo__bar b { margin-left: auto; font-family: 'Cinzel', serif; color: var(--c-gold-2); letter-spacing: .06em; font-weight: 600; }
@media (max-width: 820px) { .demo__frame iframe { height: 560px; } }

/* Community CTA */
.community {
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(14, 17, 22, .78), rgba(14, 17, 22, .9)),
    url('/assets/img/sections/community-bg.avif');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.community__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.community__col { min-width: 0; }
.community h2 { font-size: clamp(28px, 4.6vw, 50px); color: var(--c-text); }
.community h2 .hl { color: var(--c-gold-2); }
.community p { margin-top: 20px; color: var(--c-text); opacity: .82; font-size: clamp(16px, 1.8vw, 20px); }
.community__actions { margin-top: 34px; }
.rg-box {
  padding: 26px 28px; border-radius: var(--radius);
  background: rgba(11, 14, 19, .6); border: 1px solid var(--c-line);
  display: flex; gap: 20px; align-items: flex-start;
}
.rg-box__ico { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: rgba(192, 52, 75, .14); border: 1px solid rgba(192, 52, 75, .3); color: var(--c-ruby-2); }
.rg-box__ico svg { width: 28px; height: 28px; }
.rg-box h3 { font-size: 19px; color: var(--c-text); margin-bottom: 8px; }
.rg-box p { margin-top: 0; font-size: 15px; opacity: .72; }
.rg-box .age { display: inline-block; margin-top: 10px; font-family: 'Cinzel', serif; font-weight: 700; color: var(--c-gold-2); border: 1px solid var(--c-gold); border-radius: 8px; padding: 3px 12px; font-size: 14px; }

/* Generic prose for about/legal — full width, no max-width cap */
.prose-block { margin-bottom: 46px; }
.prose-block:last-child { margin-bottom: 0; }
.prose-block h2 { font-size: clamp(24px, 3.4vw, 36px); color: var(--c-gold-2); margin-bottom: 18px; }
.prose-block h3 { font-size: 21px; color: var(--c-text); margin: 26px 0 12px; }
.prose-block p { color: var(--c-muted); margin-bottom: 16px; }
.prose-block ul { list-style: none; margin: 16px 0; display: grid; gap: 12px; }
.prose-block li { position: relative; padding-left: 30px; color: var(--c-muted); }
.prose-block li::before {
  content: ''; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px;
  background: var(--grad-gold); transform: rotate(45deg);
}

/* Page hero (inner pages) */
.page-hero {
  padding-block: clamp(72px, 12vh, 120px);
  border-bottom: 1px solid var(--c-line);
  background-image:
    linear-gradient(180deg, rgba(14, 17, 22, .72), var(--c-bg)),
    url('/assets/img/sections/about-bg.avif');
  background-size: cover; background-position: center;
}
.page-hero h1 { font-size: clamp(34px, 6vw, 62px); color: var(--c-text); }
.page-hero h1 .hl { color: var(--c-gold-2); }
.page-hero p { margin-top: 18px; color: var(--c-muted); font-size: clamp(16px, 1.8vw, 20px); max-width: 760px; }
.crumbs { font-size: 13.5px; color: var(--c-faint); letter-spacing: .04em; margin-bottom: 18px; }
.crumbs a:hover { color: var(--c-gold-2); }

/* Values grid (about) */
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: start; }
.form { background: var(--grad-dark); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 36px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; color: var(--c-muted); margin-bottom: 8px; letter-spacing: .03em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(11, 14, 19, .7); border: 1px solid var(--c-line-2);
  color: var(--c-text); font: inherit; font-size: 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: none; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, .14);
}
.contact-info { display: grid; gap: 16px; }
.info-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: 14px;
  background: var(--c-panel); border: 1px solid var(--c-line-2);
}
.info-row__ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: rgba(201, 162, 75, .1); border: 1px solid var(--c-line); color: var(--c-gold-2); }
.info-row__ico svg { width: 24px; height: 24px; }
.info-row b { display: block; font-family: 'Cinzel', serif; color: var(--c-text); font-size: 16px; margin-bottom: 3px; }
.info-row p { color: var(--c-muted); font-size: 15px; margin: 0; }
.info-row a:hover { color: var(--c-gold-2); }

/* Contact — methods row */
.contact-methods { padding-block: 56px 0; }
.methods__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.method {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 26px 24px; border-radius: var(--radius);
  background: var(--grad-dark); border: 1px solid var(--c-line);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.method:hover { transform: translateY(-6px); border-color: var(--c-gold); box-shadow: var(--shadow); }
.method__ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: rgba(201, 162, 75, .1); border: 1px solid var(--c-line); color: var(--c-gold-2); margin-bottom: 8px; }
.method__ico svg { width: 26px; height: 26px; }
.method b { font-family: 'Cinzel', serif; font-size: 17px; color: var(--c-text); }
.method__val { font-size: 14.5px; color: var(--c-muted); overflow-wrap: anywhere; }

/* Contact — compose form */
.compose-form {
  background: var(--grad-dark); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field--full { grid-column: 1 / -1; }
.compose-form__submit { margin-top: 26px; display: flex; justify-content: flex-end; }
.compose-form__submit .btn { min-width: 220px; }

/* Contact — help band */
.contact-help { background: linear-gradient(180deg, var(--c-bg) 0%, #0B0E13 100%); }
.help__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: stretch; }
.help__stone {
  position: relative; padding: 38px 34px; border-radius: var(--radius);
  background: radial-gradient(120% 90% at 20% 0%, rgba(201, 162, 75, .12), transparent 60%), var(--c-bg-2);
  border: 1px solid var(--c-line);
}
.help__ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(201, 162, 75, .12); border: 1px solid var(--c-line); color: var(--c-gold-2); margin-bottom: 18px; }
.help__ico svg { width: 30px; height: 30px; }
.help__stone h2 { font-size: 22px; color: var(--c-gold-2); margin-bottom: 12px; }
.help__stone p { color: var(--c-text); opacity: .82; }
.help__org { margin-top: 14px; font-size: 14px; color: var(--c-faint); }
.help__cta {
  padding: 38px 34px; border-radius: var(--radius);
  background: var(--c-panel); border: 1px solid var(--c-line-2);
  display: flex; flex-direction: column; justify-content: center;
}
.help__cta p { font-size: clamp(17px, 2vw, 20px); color: var(--c-text); }
.help__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 900px) {
  .methods__grid { grid-template-columns: repeat(2, 1fr); }
  .help__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .methods__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .compose-form { padding: 26px 20px; }
  .compose-form__submit { justify-content: stretch; }
  .compose-form__submit .btn { width: 100%; }
  .help__actions .btn { width: 100%; }
}

/* Footer */
.site-footer { background: linear-gradient(180deg, #0B0E13 0%, #08090C 100%); border-top: 1px solid var(--c-line); margin-top: auto; }
.footer__top { padding-block: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__about { color: var(--c-muted); font-size: 15px; margin-bottom: 18px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(237, 231, 216, .04); border: 1px solid var(--c-line-2); color: var(--c-muted); transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease); -webkit-tap-highlight-color: transparent; }
.footer__social a:hover { color: var(--c-gold-2); border-color: var(--c-gold); transform: translateY(-3px); background: rgba(201, 162, 75, .06); }
.footer__social svg { width: 21px; height: 21px; }
.footer__18 { display: inline-flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-weight: 700; color: var(--c-gold-2); border: 2px solid var(--c-gold); border-radius: 14px; padding: 16px 26px; font-size: 28px; line-height: 1; letter-spacing: .02em; }
.footer__col h2 { font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: var(--c-muted); font-size: 15px; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer__links a:hover { color: var(--c-gold-2); padding-left: 6px; }

/* Business model block */
.bizmodel { padding-block: 0 48px; border-top: 1px solid var(--c-line-2); }
.bizmodel h2 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--c-gold-2); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.bizmodel h2 svg { width: 24px; height: 24px; color: var(--c-gold); }
.bizmodel h3 { font-family: 'Cinzel', serif; font-size: 16px; color: var(--c-text); margin-bottom: 6px; }
.bizmodel__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bizmodel p { color: var(--c-muted); font-size: 14.5px; }
.bizmodel p b { color: var(--c-text); font-family: 'Cinzel', serif; font-weight: 600; }

/* Responsible gambling logos */
.rg-strip { padding-block: 40px; border-top: 1px solid var(--c-line-2); }
.rg-strip h2 { font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 20px; }
.rg-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.rg-logo {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 20px; border-radius: 12px;
  background: rgba(237, 231, 216, .03); border: 1px solid var(--c-line-2);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
  min-width: 220px;
}
.rg-logo:hover { border-color: var(--c-gold); transform: translateY(-3px); background: rgba(201, 162, 75, .05); }
.rg-logo__ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: rgba(201, 162, 75, .1); border: 1px solid var(--c-line); color: var(--c-gold-2); }
.rg-logo__ico svg { width: 22px; height: 22px; }
.rg-logo b { display: block; font-family: 'Cinzel', serif; font-size: 15px; color: var(--c-text); line-height: 1.2; }
.rg-logo span { font-size: 12.5px; color: var(--c-faint); }

.footer__bottom { border-top: 1px solid var(--c-line-2); padding-block: 24px; }
.footer__bottom-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer__copy { color: var(--c-faint); font-size: 13.5px; }
.footer__disclaimer {
  margin-top: 18px; padding: 16px 20px; border-radius: 12px;
  background: rgba(192, 52, 75, .08); border: 1px solid rgba(192, 52, 75, .26);
  color: var(--c-text); font-size: 13.5px; text-align: center; letter-spacing: .02em;
}
.footer__disclaimer b { color: var(--c-gold-2); font-family: 'Cinzel', serif; }

/* Chat widget */
.chat-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--c-gold); padding: 0;
  background: radial-gradient(circle at 35% 30%, #1B2330, #0E1116);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .5), 0 0 0 0 rgba(201, 162, 75, .5);
  display: grid; place-items: center; overflow: visible;
  animation: pulse 2.6s var(--ease) infinite;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.chat-fab img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
@keyframes pulse { 0%, 100% { box-shadow: 0 14px 36px rgba(0,0,0,.5), 0 0 0 0 rgba(201,162,75,.45); } 50% { box-shadow: 0 14px 36px rgba(0,0,0,.5), 0 0 0 14px rgba(201,162,75,0); } }
.chat-fab__badge { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; border-radius: 50%; background: var(--c-ruby-2); border: 2px solid var(--c-bg); z-index: 2; }

.chat-panel {
  position: fixed; right: 24px; bottom: 100px; z-index: 91;
  width: 360px; height: 460px; max-width: calc(100vw - 32px); max-height: calc(100dvh - 130px);
  display: flex; flex-direction: column;
  background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 18px;
  box-shadow: var(--shadow); overflow: hidden;
  transform: translateY(20px) scale(.96); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .4s var(--ease), opacity .3s var(--ease), visibility 0s linear .4s;
}
.chat-panel.is-open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; pointer-events: auto; transition: transform .4s var(--ease), opacity .3s var(--ease), visibility 0s; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px; background: linear-gradient(90deg, rgba(201,162,75,.14), transparent); border-bottom: 1px solid var(--c-line); }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--c-gold); }
.chat-head b { font-family: 'Cinzel', serif; font-size: 16px; color: var(--c-text); display: block; }
.chat-head span { font-size: 12.5px; color: #6fbf83; display: flex; align-items: center; gap: 6px; }
.chat-head span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #6fbf83; }
.chat-close { margin-left: auto; background: none; border: 0; color: var(--c-muted); cursor: pointer; padding: 6px; border-radius: 8px; }
.chat-close:hover { color: var(--c-gold-2); }
.chat-close svg { width: 20px; height: 20px; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; overscroll-behavior: contain; }
.chat-msg { max-width: 80%; padding: 11px 15px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; }
.chat-msg--bot { align-self: flex-start; background: var(--c-bg-3); border: 1px solid var(--c-line-2); border-bottom-left-radius: 4px; }
.chat-msg--user { align-self: flex-end; background: var(--grad-gold); color: #2A1E07; border-bottom-right-radius: 4px; }
.chat-typing { align-self: flex-start; display: flex; gap: 5px; padding: 13px 16px; background: var(--c-bg-3); border-radius: 14px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--c-gold); animation: blink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; } .chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
.chat-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--c-line); background: var(--c-bg-2); }
.chat-foot input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 999px; background: rgba(11,14,19,.7); border: 1px solid var(--c-line-2); color: var(--c-text); font: inherit; font-size: 14.5px; }
.chat-foot input:focus { outline: none; border-color: var(--c-gold); }
.chat-foot button { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; border: 0; background: var(--grad-gold); color: #2A1E07; cursor: pointer; display: grid; place-items: center; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.chat-foot button svg { width: 20px; height: 20px; }

/* Cookie banner */
.cookie {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  width: 360px; max-width: calc(100vw - 32px);
  background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 16px;
  padding: 22px; box-shadow: var(--shadow);
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.is-shown { transform: translateY(0); }
.cookie h4 { font-family: 'Cinzel', serif; font-size: 17px; color: var(--c-gold-2); margin-bottom: 8px; }
.cookie p { font-size: 14px; color: var(--c-muted); margin-bottom: 16px; }
.cookie p a { color: var(--c-gold-2); }
.cookie__btns { display: flex; gap: 10px; justify-content: flex-end; }
.cookie__btns .btn { padding: 10px 20px; font-size: 14px; }

/* Toast */
.toast {
  position: fixed; top: 26px; left: 50%; transform: translate(-50%, -140%);
  z-index: 200; padding: 16px 26px; border-radius: 14px;
  background: var(--c-bg-2); border: 1px solid var(--c-gold);
  box-shadow: var(--shadow); color: var(--c-text); font-size: 15px;
  display: flex; align-items: center; gap: 12px; max-width: calc(100vw - 32px);
  transition: transform .5s var(--ease);
}
.toast.is-shown { transform: translate(-50%, 0); }
.toast svg { width: 24px; height: 24px; color: var(--c-gold-2); flex-shrink: 0; }
.toast--err { border-color: var(--c-ruby-2); }
.toast--err svg { color: var(--c-ruby-2); }

/* Scroll reveal (below fold) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .steps__grid, .values__grid, .bizmodel__grid { grid-template-columns: 1fr; }
  .community__inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .review__card { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
  .review__photo { margin: 0 auto; }
  .review__stars { justify-content: center; }
  .hero { padding-block: 64px 52px; }
  .hero__lead { margin-top: 18px; }
  .hero__actions { margin-top: 28px; }
  .hero__stats { gap: 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .community { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .rg-box { flex-direction: column; }
  .footer__bottom-row { justify-content: center; text-align: center; }
  .site-header__row { gap: 12px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__mark svg { width: 22px; height: 22px; }
  .brand__name { font-size: 17px; }
  .brand__name span { font-size: 9px; letter-spacing: .26em; }
  .btn--lg { padding: 15px 22px; font-size: 15px; }
  .demo__bar { padding: 11px 14px; gap: 9px; font-size: 12px; }
  .demo__bar span { display: none; }
  .demo__bar b { margin-left: auto; font-size: 13px; }
  .hero { padding-block: 48px 44px; }
}
@media (max-width: 430px) {
  .form { padding: 24px 18px; }
  .review__card { padding: 24px 16px; }
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 90px; }
  .chat-fab { right: 16px; bottom: 16px; }
  .cookie { right: 12px; left: 12px; width: auto; }
  .rg-logo { min-width: 0; width: 100%; }
}
@media (max-width: 360px) {
  .hero__stats { flex-direction: column; gap: 18px; }
  .review__photo { width: 92px; height: 92px; }
  .brand__name { font-size: 15px; }
  .brand__mark { width: 34px; height: 34px; }
  .btn--lg { font-size: 14px; padding: 14px 18px; }
  .hero__actions .btn { font-size: 13px; letter-spacing: .015em; gap: 8px; padding-inline: 14px; }
  .hero__actions .btn svg { width: 17px; height: 17px; }
}
