/* ============================================
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:    #080d1a;
  --bg-card:    #0f1628;
  --bg-card2:   #141e33;
  --bg-nav:     #060a15;
  --bd-color:   #1c2b45;
  --bd-light:   #243452;
  --clr-teal:   #12c896;
  --clr-teal2:  #0fa87e;
  --clr-amber:  #e8951c;
  --clr-amber2: #c97f14;
  --clr-red:    #e04444;
  --txt-hi:     #edf1f8;
  --txt-mid:    #a8b8d0;
  --txt-low:    #5c7090;
  --txt-inv:    #080d1a;
  --ff-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --ff-head:    'Syne', 'Inter', sans-serif;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --trans:      0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg-base); color: var(--txt-hi); font-family: var(--ff-sans); line-height: 1.6; min-height: 100vh; }
a { color: var(--clr-teal); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--clr-teal2); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--ff-head); line-height: 1.2; color: var(--txt-hi); }


/* ============ LAYOUT ============ */
.wk4x { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wk4x--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ============ NAVIGATION ============ */
.bq9p {
  position: sticky; top: 0; z-index: 900;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--bd-color);
  backdrop-filter: blur(12px);
}
.bq9p__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.zt7m {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.zt7m__mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.rj2f { display: flex; align-items: center; gap: 4px; }
.cx8v {
  padding: 8px 14px; border-radius: 8px;
  color: var(--txt-mid); font-size: 0.9rem; font-weight: 500;
  transition: background var(--trans), color var(--trans);
}
.cx8v:hover, .cx8v--active { background: var(--bg-card2); color: var(--txt-hi); }
.cx8v--cta {
  background: var(--clr-teal); color: var(--txt-inv) !important;
  padding: 8px 18px; font-weight: 600;
}
.cx8v--cta:hover { background: var(--clr-teal2); color: var(--txt-inv) !important; }
.gx6f {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none;
}
.gx6f span {
  display: block; width: 24px; height: 2px;
  background: var(--txt-mid); border-radius: 2px;
  transition: all var(--trans);
}
.op2d {
  display: none; position: fixed; inset: 0; top: 68px;
  background: var(--bg-nav); z-index: 800;
  flex-direction: column; padding: 24px;
  border-top: 1px solid var(--bd-color);
}
.op2d--open { display: flex; }
.op2d .cx8v { font-size: 1.1rem; padding: 14px 16px; border-radius: var(--radius); }

/* ============ HERO ============ */
.lp5n {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(18,200,150,0.12) 0%, transparent 70%),
              var(--bg-base);
  text-align: center; position: relative; overflow: hidden;
}
.lp5n::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2312c896' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ms4w {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,200,150,0.12); border: 1px solid rgba(18,200,150,0.3);
  color: var(--clr-teal); padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 24px;
}
.yw6b {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}
.yw6b span { color: var(--clr-teal); }
.mh1q {
  font-size: 1.1rem; color: var(--txt-mid); max-width: 580px;
  margin: 0 auto 36px; line-height: 1.7;
}
.lp5n__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.gh0i {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-teal); color: var(--txt-inv);
  padding: 13px 28px; border-radius: var(--radius); border: none;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 20px rgba(18,200,150,0.35);
}
.gh0i:hover { background: var(--clr-teal2); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(18,200,150,0.45); color: var(--txt-inv); }
.sl7o {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--txt-mid);
  padding: 13px 28px; border-radius: var(--radius);
  border: 1px solid var(--bd-light); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all var(--trans);
}
.sl7o:hover { border-color: var(--clr-teal); color: var(--clr-teal); }
.wp4r {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,200,150,0.08); color: var(--clr-teal);
  padding: 10px 22px; border-radius: var(--radius);
  border: 1px solid rgba(18,200,150,0.25); font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all var(--trans);
}
.wp4r:hover { background: rgba(18,200,150,0.15); border-color: var(--clr-teal); }

/* ============ SECTIONS ============ */
.ts4e { padding: 72px 0; }
.ts4e--alt { background: var(--bg-card); }
.ts4e--dark { background: var(--bg-base); }
.vr9c {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em;
}
.fu7a { text-align: center; color: var(--txt-mid); max-width: 560px; margin: 0 auto 48px; font-size: 1rem; }
.ts4e__head { margin-bottom: 48px; }

/* ============ PLATFORM CARDS ============ */
.ry1h {
  background: var(--bg-card);
  border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: border-color var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.ry1h::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--clr-teal); border-radius: 3px 0 0 3px;
}
.ry1h:hover { border-color: var(--bd-light); box-shadow: var(--shadow); }
.ry1h__top { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.ry1h__rank {
  min-width: 40px; height: 40px; background: var(--bg-card2);
  border: 1px solid var(--bd-color); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--txt-low); flex-shrink: 0;
}
.ry1h__logo {
  width: 160px; height: 64px; background: var(--bg-card2);
  border: 1px solid var(--bd-color); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.ry1h__logo img { max-height: 48px; max-width: 140px; object-fit: contain; filter: brightness(1.05) drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.ry1h__logo img[src="public/images/watchmyspin.webp"],
.ry1h__logo img[src="public/images/vegasparadise.webp"] { background: transparent; }
.ry1h__logo--text {
  font-family: var(--ff-head); font-weight: 800; font-size: 0.9rem;
  color: var(--txt-hi); text-align: center; padding: 8px; line-height: 1.3;
}
.ry1h__info { flex: 1; min-width: 0; }
.ry1h__name { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.ry1h__overview { color: var(--txt-mid); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.6; }
.ry1h__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ol3p {
  background: var(--bg-card2); border: 1px solid var(--bd-color);
  color: var(--txt-mid); padding: 4px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
}
.ry1h__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ry1h__licence { color: var(--clr-teal); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.ry1h__actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; min-width: 160px; flex-shrink: 0; }
.ry1h__body {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--bd-color);
  display: none;
}
.ry1h__body--open { display: block; }
.ry1h__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 20px; }
.ry1h__feat {
  background: var(--bg-card2); border: 1px solid var(--bd-color);
  border-radius: var(--radius); padding: 16px;
}
.ry1h__feat-label { font-size: 0.75rem; color: var(--txt-low); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.ry1h__feat-val { font-size: 0.92rem; color: var(--txt-hi); font-weight: 500; }
.ry1h__disc { font-size: 0.78rem; color: var(--txt-low); margin-top: 16px; border-top: 1px solid var(--bd-color); padding-top: 12px; }
.ry1h__toggle {
  background: none; border: none; color: var(--clr-teal); font-size: 0.85rem;
  font-weight: 600; cursor: pointer; margin-top: 16px; display: flex; align-items: center; gap: 5px;
  transition: color var(--trans); padding: 0;
}
.ry1h__toggle:hover { color: var(--clr-teal2); }
.ry1h__toggle svg { transition: transform var(--trans); }
.ry1h__toggle--open svg { transform: rotate(180deg); }

/* ============ FEATURE GRID ============ */
.tf6p { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.iw3r {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color var(--trans);
}
.iw3r:hover { border-color: var(--bd-light); }
.lr9e {
  width: 48px; height: 48px; background: rgba(18,200,150,0.1);
  border: 1px solid rgba(18,200,150,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.4rem;
}
.hn4x { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.co7v { font-size: 0.88rem; color: var(--txt-mid); line-height: 1.6; }

/* ============ INFO SECTION ============ */
.gp2z {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); overflow: hidden;
}
.gp2z__head {
  display: grid; grid-template-columns: 40px 160px 1fr 100px 160px;
  gap: 16px; align-items: center; padding: 14px 28px;
  background: var(--bg-card2); border-bottom: 1px solid var(--bd-color);
  font-size: 0.78rem; color: var(--txt-low); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ============ COMPARISON TABLE (simple) ============ */
.cmp-tbl { width: 100%; border-collapse: collapse; }
.cmp-tbl th {
  background: var(--bg-card2); padding: 14px 20px;
  font-size: 0.78rem; color: var(--txt-low); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; text-align: left;
  border-bottom: 1px solid var(--bd-color);
}
.cmp-tbl td { padding: 16px 20px; border-bottom: 1px solid var(--bd-color); font-size: 0.9rem; color: var(--txt-mid); vertical-align: middle; }
.cmp-tbl tr:last-child td { border-bottom: none; }
.cmp-tbl tr:hover td { background: rgba(255,255,255,0.02); }
.cmp-tbl td:first-child { color: var(--txt-hi); font-weight: 600; }
.cmp-chk { color: var(--clr-teal); font-size: 1.1rem; }
.cmp-x { color: var(--clr-red); font-size: 1.1rem; }

/* ============ RESPONSIBLE GAMING ============ */
.hs9k { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 48px; }
.ft2m {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); padding: 28px 24px;
  border-top: 3px solid var(--clr-teal);
}
.ft2m--warn { border-top-color: var(--clr-amber); }
.ft2m--red  { border-top-color: var(--clr-red); }
.ft2m__icon { font-size: 2rem; margin-bottom: 14px; }
.ft2m__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.ft2m__text { font-size: 0.88rem; color: var(--txt-mid); line-height: 1.7; }
.ft2m__list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.ft2m__list li { font-size: 0.87rem; color: var(--txt-mid); display: flex; align-items: flex-start; gap: 8px; }
.ft2m__list li::before { content: '→'; color: var(--clr-teal); flex-shrink: 0; margin-top: 1px; }
.vn7q { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.ba4j {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  transition: border-color var(--trans);
}
.ba4j:hover { border-color: var(--bd-light); }
.ba4j__logo { height: 56px; display: flex; align-items: center; justify-content: center; }
.ba4j__logo img { max-height: 56px; max-width: 160px; object-fit: contain; }
.ba4j__name { font-weight: 700; font-size: 1rem; }
.ba4j__desc { font-size: 0.82rem; color: var(--txt-mid); line-height: 1.5; }
.ba4j__link { margin-top: auto; }

/* ============ FAQ ============ */
.ew8x { display: flex; flex-direction: column; gap: 12px; }
.pc5z {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius); overflow: hidden;
}
.nf1g {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 0.97rem; user-select: none;
  transition: background var(--trans);
}
.nf1g:hover { background: var(--bg-card2); }
.nf1g svg { flex-shrink: 0; transition: transform var(--trans); color: var(--clr-teal); }
.pc5z--open .nf1g { background: var(--bg-card2); }
.pc5z--open .nf1g svg { transform: rotate(180deg); }
.td6h {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--txt-mid); font-size: 0.92rem; line-height: 1.7;
}
.td6h--open { padding: 0 24px 20px; max-height: 800px; }
.td6h p + p { margin-top: 10px; }
.td6h a { color: var(--clr-teal); }

/* ============ LEGAL CONTENT ============ */
.ub3y { max-width: 800px; margin: 0 auto; }
.rk8e { margin-bottom: 40px; }
.rk8e h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; color: var(--txt-hi); }
.rk8e h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; margin-top: 20px; color: var(--txt-hi); }
.rk8e p { font-size: 0.92rem; color: var(--txt-mid); line-height: 1.8; margin-bottom: 12px; }
.rk8e ul { padding-left: 20px; margin-bottom: 12px; }
.rk8e ul li { font-size: 0.92rem; color: var(--txt-mid); margin-bottom: 6px; list-style: disc; line-height: 1.7; }
.rk8e ul li::marker { color: var(--clr-teal); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid__img {
  background: var(--bg-card); border: 1px solid var(--bd-color); border-radius: var(--radius-lg);
  padding: 48px; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3; font-size: 4rem; color: var(--txt-low);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
}
.team-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-card2); border: 2px solid var(--bd-light);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.team-card__name { font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 0.82rem; color: var(--clr-teal); font-weight: 600; margin-bottom: 10px; }
.team-card__bio { font-size: 0.83rem; color: var(--txt-mid); line-height: 1.6; }

/* ============ STAT STRIP ============ */
.stat-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); overflow: hidden; margin: 48px 0;
}
.stat-strip__item {
  flex: 1; min-width: 140px; padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--bd-color);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num { font-size: 2rem; font-weight: 800; color: var(--clr-teal); margin-bottom: 4px; }
.stat-strip__lbl { font-size: 0.82rem; color: var(--txt-mid); }

/* ============ FOOTER ============ */
.xf1t { background: var(--bg-nav); border-top: 1px solid var(--bd-color); padding: 64px 0 32px; }
.xf1t__orgs { padding-bottom: 40px; border-bottom: 1px solid var(--bd-color); margin-bottom: 40px; }
.xf1t__orgs-label { font-size: 0.78rem; color: var(--txt-low); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; text-align: center; margin-bottom: 28px; }
.im9j { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; }
.kv2h { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.kv2h img { height: 52px; max-width: 180px; object-fit: contain; filter: brightness(0.9); transition: filter var(--trans); }
.kv2h:hover img { filter: brightness(1.1); }
.kv2h span { font-size: 0.75rem; color: var(--txt-low); }
.xf1t__main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.xf1t__brand .zt7m__mark { width: 34px; height: 34px; margin-bottom: 12px; display: block; }
.xf1t__brand p { font-size: 0.85rem; color: var(--txt-mid); line-height: 1.7; margin-bottom: 12px; }
.jx5s h4 { font-size: 0.78rem; color: var(--txt-low); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.jx5s a { display: block; font-size: 0.87rem; color: var(--txt-mid); margin-bottom: 8px; transition: color var(--trans); }
.jx5s a:hover { color: var(--txt-hi); }
.yl5g {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px;
  font-size: 0.82rem; color: var(--txt-mid); line-height: 1.7;
}
.yl5g strong { color: var(--txt-hi); }
.ru6b {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--clr-red); color: #fff; font-weight: 900;
  width: 32px; height: 32px; border-radius: 50%; font-size: 0.75rem;
  flex-shrink: 0; margin-right: 8px;
}
.to7p {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--bd-color);
  font-size: 0.8rem; color: var(--txt-low); flex-wrap: wrap; gap: 12px;
}

/* ============ AGE MODAL ============ */
.fq6m {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,13,26,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.fq6m--hidden { display: none; }
.hx2k {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); padding: 48px 40px; max-width: 460px; width: 100%;
  text-align: center; box-shadow: var(--shadow);
}
.az9l { font-size: 4rem; margin-bottom: 8px; }
.hx2k h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.hx2k p { color: var(--txt-mid); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }
.pw5n { display: flex; flex-direction: column; gap: 12px; }
.hx2k .disclaimer { font-size: 0.75rem; color: var(--txt-low); margin-top: 16px; line-height: 1.6; }

/* ============ COOKIE BANNER ============ */
.nb7n {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--bg-card); border-top: 1px solid var(--bd-color);
  padding: 20px 24px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.nb7n--show { transform: translateY(0); }
.nb7n__inner { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.nb7n__text { flex: 1; min-width: 260px; font-size: 0.85rem; color: var(--txt-mid); line-height: 1.6; }
.nb7n__text a { color: var(--clr-teal); }
.ej7b { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.ej7b button { padding: 10px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--trans); }
.ej7b__accept { background: var(--clr-teal); color: var(--txt-inv); }
.ej7b__accept:hover { background: var(--clr-teal2); }
.ej7b__reject { background: transparent; color: var(--txt-mid); border: 1px solid var(--bd-light) !important; }
.ej7b__reject:hover { border-color: var(--txt-mid) !important; color: var(--txt-hi); }
.ej7b__manage { background: transparent; color: var(--clr-teal); border: 1px solid rgba(18,200,150,0.3) !important; }
.ej7b__manage:hover { background: rgba(18,200,150,0.08); }

/* ============ COOKIE PREFERENCES MODAL ============ */
.uf1y {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(8,13,26,0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.uf1y--hidden { display: none; }
.uf1y__box {
  background: var(--bg-card); border: 1px solid var(--bd-color);
  border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow);
}
.uf1y__head { padding: 28px 32px 20px; border-bottom: 1px solid var(--bd-color); }
.uf1y__head h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.uf1y__head p { font-size: 0.85rem; color: var(--txt-mid); }
.uf1y__body { padding: 24px 32px; }
.uf1y__item { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--bd-color); }
.uf1y__item:last-child { border-bottom: none; }
.uf1y__item-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.uf1y__item-info p { font-size: 0.8rem; color: var(--txt-mid); line-height: 1.5; }
.uf1y__toggle-wrap { flex-shrink: 0; }
.ck-toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--bg-card2); border: 1px solid var(--bd-light);
  border-radius: 24px; transition: all var(--trans);
}
.ck-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; bottom: 2px;
  background: var(--txt-low); border-radius: 50%; transition: all var(--trans);
}
.ck-toggle input:checked + .ck-slider { background: var(--clr-teal); border-color: var(--clr-teal); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(20px); background: #fff; }
.ck-toggle input:disabled + .ck-slider { opacity: 0.6; cursor: not-allowed; }
.uf1y__foot { padding: 20px 32px; border-top: 1px solid var(--bd-color); display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.uf1y__foot button { padding: 10px 22px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--trans); }
.uf1y__save { background: var(--clr-teal); color: var(--txt-inv); }
.uf1y__save:hover { background: var(--clr-teal2); }
.uf1y__close-btn { background: transparent; color: var(--txt-mid); border: 1px solid var(--bd-light) !important; }
.uf1y__close-btn:hover { border-color: var(--txt-mid) !important; }

/* ============ ALERT/NOTICE BOXES ============ */
.ntc {
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 0.87rem; line-height: 1.6; display: flex; align-items: flex-start; gap: 12px;
  margin: 20px 0;
}
.ntc--teal { background: rgba(18,200,150,0.07); border: 1px solid rgba(18,200,150,0.2); color: var(--txt-mid); }
.ntc--amber { background: rgba(232,149,28,0.07); border: 1px solid rgba(232,149,28,0.25); color: var(--txt-mid); }
.ntc--red { background: rgba(224,68,68,0.07); border: 1px solid rgba(224,68,68,0.25); color: var(--txt-mid); }
.ntc__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ============ PAGE HEADER ============ */
.pg-head {
  padding: 60px 0 52px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(18,200,150,0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--bd-color); text-align: center;
}
.pg-head__eyebrow { font-size: 0.78rem; color: var(--clr-teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pg-head__title { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.pg-head__sub { font-size: 1rem; color: var(--txt-mid); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ============ MISC ============ */
.divider { border: none; border-top: 1px solid var(--bd-color); margin: 0; }
.txt-teal { color: var(--clr-teal); }
.txt-amber { color: var(--clr-amber); }
.txt-muted { color: var(--txt-mid); }
.txt-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.fw-700 { font-weight: 700; }

/* scroll-to-top */
.stt {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card2); border: 1px solid var(--bd-light);
  color: var(--txt-mid); cursor: pointer; display: none;
  align-items: center; justify-content: center; font-size: 1.2rem;
  transition: all var(--trans);
}
.stt--show { display: flex; }
.stt:hover { background: var(--clr-teal); color: var(--txt-inv); border-color: var(--clr-teal); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .xf1t__main { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__img { aspect-ratio: 16/7; }
}
@media (max-width: 768px) {
  .rj2f { display: none; }
  .gx6f { display: flex; }
  .xf1t__main { grid-template-columns: 1fr; gap: 28px; }
  .ry1h__top { gap: 16px; }
  .ry1h__logo img { max-height: 36px; max-width: 110px; }
  .ba4j__logo { height: 44px; }
  .ba4j__logo img { max-height: 44px; max-width: 120px; }
  .ry1h__actions { align-items: stretch; min-width: unset; width: 100%; }
  .gp2z__head { display: none; }
  .stat-strip__item { border-right: none; border-bottom: 1px solid var(--bd-color); }
  .stat-strip__item:last-child { border-bottom: none; }
  .pg-head { padding: 48px 0 40px; }
  .hx2k { padding: 32px 24px; }
  .uf1y__box { max-height: 95vh; }
  .uf1y__head, .uf1y__body, .uf1y__foot { padding-left: 24px; padding-right: 24px; }
  .to7p { flex-direction: column; text-align: center; }
  .nb7n__inner { flex-direction: column; }
  .ej7b { width: 100%; }
  .ej7b button { flex: 1; min-width: 100px; }
}
@media (max-width: 480px) {
  .wk4x { padding: 0 16px; }
  .yw6b { font-size: 1.8rem; }
  .ts4e { padding: 52px 0; }
  .im9j { gap: 24px; }
  .kv2h img { height: 40px; }
  .ry1h__logo img { max-height: 30px; max-width: 96px; }
  .ba4j__logo { height: 38px; }
  .ba4j__logo img { max-height: 38px; max-width: 104px; }
}
