/*
Theme Name: Casino Network Theme (CANADA)
Author: Corporation NUPOGODI
Description: Multisite-ready casino theme.
Version: 4.9.1
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: casino-theme
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --container: 1280px;
  --bg: #eef3fe;
  --text: #262626;
  --accent: #c65342;
  --accent-rgb: 213, 43, 30;
  --accent-3: #f90;
  --card-shadow: 0 4px 10px rgb(155 186 248 / .2);
  --gap: 18px;

  --color--white: #fff;
  --color--neutral-11: #262626;
  --color--neutral-12: #1a1a1a;
  --color--sunrise-primary-1: #310000;
  --color--sunrise-dark-1: #190000;
  --color--sunrise-dark-2: #0F0000;
  --gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
  --gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
  --sunrise-dark-1-rgb: 25, 0, 0;
  --sunrise-light-1-rgb: 255, 242, 242;

  /* ── Gold palette ── */
  --gold: rgb(255, 199, 0);
  --gold-light: rgb(255, 235, 165);
  --gold-rgb: 255, 199, 0;
  --gradient--gold: linear-gradient(var(--gold-light) 0%, var(--gold) 100%);

  /* ── Extended dark-red palette ── */
  --color--sunrise-dark-3: #3d0d00;

  /* ── Component tokens ── */
  --text-muted: rgba(0, 0, 0, .5);
  --surface2: rgba(0, 0, 0, .04);
  --border: rgba(0, 0, 0, .1);
  --radius: 10px;
  --t: .2s ease;
  --focus: 0 0 0 3px rgba(255, 153, 0, .45);
  --overlay: rgba(0, 0, 0, .75);
}

/* === Base Typography === */
html, body {
  margin: 0 !important;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  background-position: top center;
  color: var(--text);
  overflow-x: hidden;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main,
main {
  flex: 1 0 auto;
}

.c35375f {
  flex-shrink: 0;
}

a {
  color: #310000;
  transition: color .15s ease, text-decoration-color .15s ease;
}

a:hover {
  color: #31000088;
  text-decoration-color: #310000;
}

/* === Reusable Container === */
.c051c762e {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile breakpoint */
@media (max-width: 575px) {
  .c051c762e {
    padding: 0 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* === Full-width Site Header (new) === */
.cb19e2f6 {
  width: 100%;
  background-color: #310000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

@media screen and (min-width: 1025px) {
  .cb19e2f6 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  body {
    padding-top: 80px;
  }
}

.cb19e2f6 .c064ff2d5 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

/* Logo block: supports custom cb26982 or site title*/

.cb19e2f6 .c9830a7 img {
  max-height: 42px;
  width: auto;
  height: auto;
}

/* Main nav: button + list + auth buttons */
.c8149 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.c8149 .c6e13af {
  margin: 0;
}

/* Desktop auth buttons are visible by default (mobile overrides below) */
.c8149 .c9b89 {
  display: flex;
  gap: 10px;
}

/* Paddings responsive for the inner c051c762e */
@media (max-width: 991px) {
  .cb19e2f6 .c064ff2d5 {
    padding: 16px 30px;
  }
}

@media (max-width: 575px) {
  .cb19e2f6 .c064ff2d5 {
    padding: 14px 15px;
  }
}

/* Mobile layout: stack c6e13af + auth inside nav, controlled by .c6e13af.cb986013 */
@media screen and (max-width: 1024px) {
  .c8149 {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .c1cdf620a {
    display: block;
    margin-left: auto;
  }

  .c8149 .c6e13af {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    animation: slideDown 0.3s ease-out forwards;
    transform-origin: top;
  }

  .c8149 .c6e13af.cb986013 {
    display: flex;
  }

  .c8149 .c9b89 {
    display: none;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  /* Show auth buttons when list is opened (JS toggles class on UL) */
  .c8149 .c6e13af.cb986013+.c9b89 {
    display: flex;
  }
}

/* Ensure auth buttons render inline on desktop */
@media screen and (min-width: 1025px) {
  .c1cdf620a {
    display: none !important;
  }

  .c8149 .c9b89 {
    display: flex;
  }
}

/* Header c6e13af dropdown */
.cb19e2f6 .c6e13af>.cdb33 {
  position: relative;
}

.cb19e2f6 .c6e13af>.cdb33::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
}

.cb19e2f6 .c6e13af>.cdb33>.cf06dd {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.cb19e2f6 .c6e13af>.cdb33:hover>.cf06dd, .cb19e2f6 .c6e13af>.cdb33:focus-within>.cf06dd {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cb19e2f6 .c6e13af>.cdb33>.cf06dd>li {
  margin: 0;
}

.cb19e2f6 .c6e13af>.cdb33>.cf06dd a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  transition: background .15s ease, transform .15s ease;
}

.cb19e2f6 .c6e13af>.cdb33>.cf06dd a:hover, .cb19e2f6 .c6e13af>.cdb33>.cf06dd a:focus {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.cb19e2f6 .c6e13af>.cdb33:hover>a, .cb19e2f6 .c6e13af>.cdb33:focus-within>a {
  color: #ffd166;
}

.cb19e2f6 .c6e13af>.cdb33>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .cb19e2f6 .c8149 .c6e13af>.cdb33>a {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .cb19e2f6 .c8149 .c6e13af>.cdb33>a::after {
    margin-left: auto;
  }
}

.cb19e2f6 .c6e13af>.cdb33>a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 3px;
  transition: transform .2s ease;
}

.cb19e2f6 .c6e13af>.cdb33:hover>a::after, .cb19e2f6 .c6e13af>.cdb33:focus-within>a::after {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 3px;
}

/* Nested submenus flyout (desktop only) */
@media (min-width:1025px) {

  /* Hide nested sub-menus by default and show as flyout to the right */
  .cb19e2f6 .c6e13af .cf06dd .cdb33 {
    position: relative;
  }

  .cb19e2f6 .c6e13af .cf06dd .cdb33>.cf06dd {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    margin-left: 8px;
    padding: 8px;
    background: rgba(20, 20, 20, .95);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
    z-index: 1000;
    opacity: 0;
    transform: translateY(6px) scale(.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .cb19e2f6 .c6e13af .cf06dd .cdb33:hover>.cf06dd, .cb19e2f6 .c6e13af .cf06dd .cdb33:focus-within>.cf06dd {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Uniform link styling for any submenu level */
  .cb19e2f6 .c6e13af .cf06dd a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    transition: background .15s ease, transform .15s ease;
  }

  .cb19e2f6 .c6e13af .cf06dd a:hover, .cb19e2f6 .c6e13af .cf06dd a:focus {
    background: rgba(255, 255, 255, .08);
    transform: translateX(2px);
  }

  /* Right-arrow indicator for items that have deeper levels */
  .cb19e2f6 .c6e13af .cf06dd .cdb33>a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23000' d='M311.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L243.2 256 73.9 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23000' d='M311.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L243.2 256 73.9 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: .9;
    transition: transform .2s ease, opacity .2s ease;
  }

  .cb19e2f6 .c6e13af .cf06dd .cdb33:hover>a::after, .cb19e2f6 .c6e13af .cf06dd .cdb33:focus-within>a::after {
    transform: translateX(2px);
    opacity: 1;
  }

  /* If top-level item uses dropdown-right, open nested flyouts to the left */
}

@media (max-width:1024px) {
  .cb19e2f6 .c6e13af {
    overflow: visible;
  }

  .cb19e2f6 .c6e13af>.cdb33 {
    position: relative;
  }

  .cb19e2f6 .c6e13af>.cdb33::after {
    display: none;
  }

  .cb19e2f6 .c6e13af>.cdb33>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
  }

  .cb19e2f6 .c6e13af>.cdb33>.cf06dd {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    padding: 6px 0;
    margin-top: 6px;
    background: transparent;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }

  .cb19e2f6 .c6e13af>.cdb33:focus-within>.cf06dd, .cb19e2f6 .c6e13af>.cdb33:hover>.cf06dd {
    max-height: 600px;
  }

  /* Also expand when JS adds .submenu-open on mobile (tap-to-open) */

  .cb19e2f6 .c6e13af>.cdb33>.cf06dd>li>a {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    margin: 4px 0;
  }

  .cb19e2f6 .c6e13af>.cdb33>a::after {
    margin-left: 10px;
    width: 14px;
    height: 14px;
    transform: rotate(0);
  }

  .cb19e2f6 .c6e13af>.cdb33:focus-within>a::after, .cb19e2f6 .c6e13af>.cdb33:hover>a::after {
    transform: rotate(180deg);
  }

  /* Rotate caret when submenu-open is active */
}

/* === Header === */

.c064ff2d5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Menu === */
.c6e13af {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.c6e13af li {
  display: inline;
}

.c6e13af a {
  font-weight: bold;
  text-decoration: none;
  color: #e0e0e0;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background-color .15s ease;
}

.c6e13af a:hover {
  background-color: #0000001f;
}

/* === Auth Buttons === */
.c9b89 {
  display: flex;
  gap: 10px;
}

.cdac6f5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  background-image: var(--gradient--gold);
  color: var(--text);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .875rem;
  font-family: inherit;
  padding: 8px 14px;
  border-radius: 7px;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), .35);
  transition: filter var(--t), transform .15s ease, box-shadow var(--t);
  position: relative;
  animation: fadeInCascade 0.7s ease forwards;
}

.cdac6f5 .cf8af3e3 {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.cdac6f5:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(var(--gold-rgb), .55);
  color: var(--text);
  text-decoration: none !important;
}

.cdac6f5:active {
  transform: translateY(0);
  filter: brightness(.96);
  box-shadow: 0 2px 8px rgba(var(--gold-rgb), .3);
}

.cdac6f5:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* === Menu Toggle === */
.c1cdf620a {
  display: none;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}

.c1cdf620a::before, .c1cdf620a::after, .c1cdf620a span {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.3s ease all;
  left: 0;
}

.c1cdf620a span {
  top: 9px;
}

.c1cdf620a::before {
  top: 0;
}

.c1cdf620a::after {
  bottom: 0;
}

/* === Responsive Menu === */
@media screen and (max-width: 1024px) {
  .c1cdf620a {
    display: block;
  }

  .c6e13af {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .c6e13af.cb986013 {
    display: flex;
  }

  .c9b89 {
    justify-content: flex-end;
  }

}

@media screen and (min-width: 1025px) {
  .c1cdf620a {
    display: none !important;
  }

}

/* === Main Content === */
.c1848d13 {
  min-height: calc(100vh - 470px);
}

/* Desktop content layout */
@media (min-width: 1025px) {
  .c1848d13 {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: flex-start;
  }

  /* Breadcrumbs full width above columns */
  .c1848d13>.caf58817 {
    flex: 0 0 100%;
    order: 0;
    width: 100%;
  }

}

/* Auth buttons under site navigation on mobile */
@media screen and (max-width: 1024px) {

  .c064ff2d5 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .c9b89 {
    order: 2;
    display: none;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .c9b89 .cdac6f5 {
    flex: 1;
    text-align: center;
  }

}

/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .c064ff2d5 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .c1cdf620a {
    margin-left: auto;
  }
}

@media screen and (max-width: 1024px) {
  .c6e13af {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    animation: slideDown 0.3s ease-out forwards;
    transform-origin: top;
  }

  .c6e13af.cb986013 {
    display: flex;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media screen and (max-width: 1024px) {
  .c6e13af.cb986013 a {
    opacity: 0;
    animation: fadeInCascade 0.4s ease forwards;
  }

  .c6e13af.cb986013 a:nth-child(1) {
    animation-delay: 0.05s;
  }

  @keyframes fadeInCascade {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* === TABLE STYLE === */
main table,
.ccf88839f table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  border: 1px solid var(--gold);
  overflow: hidden;
}

main thead th,
.ccf88839f thead th {
  background: var(--gold);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-right: 1px solid rgba(255, 255, 255, .35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

main thead th:last-child,
.ccf88839f thead th:last-child {
  border-right: 0;
}

main tbody td,
.ccf88839f tbody td {
  padding: 14px 16px;
  color: #222;
  vertical-align: top;
  border-top: 1px solid rgba(var(--accent-rgb), .18);
  border-right: 1px solid rgba(var(--accent-rgb), .12);
  background: transparent;
  transition: background .2s ease;
}

main tbody td:last-child,
.ccf88839f tbody td:last-child {
  border-right: 0;
}

main tbody tr:nth-child(even) td,
.ccf88839f tbody tr:nth-child(even) td {
  background: rgba(var(--gold-rgb), .06);
}

main tbody tr:hover td,
.ccf88839f tbody tr:hover td {
  background: linear-gradient(90deg, rgba(var(--gold-rgb), .16), rgba(var(--accent-rgb), .1));
}

main tbody td:first-child,
.ccf88839f tbody td:first-child {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  main table,
  main thead,
  main tbody,
  main tr,
  main td,
  main th,
  .ccf88839f table,
  .ccf88839f thead,
  .ccf88839f tbody,
  .ccf88839f tr,
  .ccf88839f td,
  .ccf88839f th {
    box-sizing: border-box;
  }

  main table,
  .ccf88839f table {
    display: block !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    margin: 1.25rem 0 !important;
    width: 100% !important;
  }

  main thead,
  .ccf88839f thead {
    display: none !important;
  }

  main tbody,
  .ccf88839f tbody {
    display: block !important;
    width: 100% !important;
  }

  main tbody tr,
  .ccf88839f tbody tr {
    display: block !important;
    position: static !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%) !important;
    padding: 6px 14px !important;
    margin: 0 0 14px 0 !important;
    width: 100% !important;
  }

  main tbody tr:last-child,
  .ccf88839f tbody tr:last-child {
    margin-bottom: 0 !important;
  }

  main tbody tr:nth-child(odd) td,
  main tbody tr:nth-child(even) td,
  main tbody tr:hover td,
  .ccf88839f tbody tr:nth-child(odd) td,
  .ccf88839f tbody tr:nth-child(even) td,
  .ccf88839f tbody tr:hover td {
    background: transparent !important;
  }

  main tbody td,
  .ccf88839f tbody td {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    padding: 10px 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .25) !important;
    white-space: normal !important;
    color: #fff !important;
    width: 100% !important;
  }

  main tbody td:first-child,
  .ccf88839f tbody td:first-child {
    border-top: 0 !important;
    padding-top: 4px !important;
    color: #fff !important;
    font-weight: 800 !important;
  }

  main tbody td[data-label]::before,
  .ccf88839f tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  }
}

/* === HEADER POLISH OVERRIDES (refine alignment/spacing/visuals) === */
.cb19e2f6 .c064ff2d5 {
  min-height: 64px;
  gap: 16px;
}

.cb19e2f6 .cb26982 {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
}

.cb19e2f6 .c9830a7 img {
  max-height: 36px;
  height: auto;
  width: auto;
}

.cb19e2f6 .c8149 {
  gap: 18px;
}

.cb19e2f6 .c8149 .c6e13af {
  display: flex;
  align-items: center;
  gap: 0;
}

.cb19e2f6 .c8149 .c6e13af li {
  display: block;
}

.cb19e2f6 .c8149 .c6e13af a {
  padding: 10px 12px;
  border-radius: 8px;
}

/* cdb7a sm style for header auth buttons — uses only :root vars */
.cb19e2f6 .c9b89 .cdac6f5 {
  background-image: var(--gradient--gold);
  color: var(--text);
  border: none;
  box-shadow: none;
}

.cb19e2f6 .c9b89 .cdac6f5.cc402e {
  background: none;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

.cb19e2f6 .c9b89 .cdac6f5.cc402e:hover {
  background: rgba(var(--gold-rgb), .1);
  box-shadow: 0 7px 20px rgba(var(--gold-rgb), .55);
}

.cb19e2f6 .c9b89 .cdac6f5.cb8c6d80 {
  background-image: var(--gradient--gold);
  color: var(--text);
}

.cb19e2f6 .c9b89 .cdac6f5:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(var(--gold-rgb), .55);
}

/* Mobile: spacing when c6e13af opens */
@media screen and (max-width: 1024px) {
  .cb19e2f6 .c8149 .c9b89 {
    margin-top: 4px;
  }
}

/* === MOBILE NAV STACK FIX â€” left align, full width, tighter spacing === */
@media (max-width: 1024px) {

  /* Allow wrapping: nav drops under the cb26982 */
  .cb19e2f6 .c064ff2d5 {
    flex-wrap: wrap;
    align-items: center;
  }

  .cb19e2f6 .cb26982 {
    order: 1;
  }

  .cb19e2f6 .c8149 {
    order: 2;
    width: 100%;
    align-items: stretch;
  }

  /* Menu list: full width column, left aligned */
  .cb19e2f6 .c8149 .c6e13af {
    align-items: flex-start;
    width: 100%;
    margin-top: 6px;
    padding: 4px 0;
  }

  .cb19e2f6 .c8149 .c6e13af.cb986013 {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cb19e2f6 .c8149 .c6e13af li {
    display: block;
    width: 100%;
  }

  .cb19e2f6 .c8149 .c6e13af a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 8px;
    border-radius: 6px;
  }

  .cb19e2f6 .c8149 .c6e13af a:hover {
    background-color: rgba(255, 255, 255, 0.06);
  }

  /* Auth buttons below c6e13af, full width */
  .cb19e2f6 .c8149 .c9b89 {
    margin-top: 8px;
    gap: 8px;
  }

  .cb19e2f6 .c8149 .c9b89 .cdac6f5 {
    flex: 1 1 0;
    padding: 10px 12px;
  }

  /* Keep burger aligned to the right edge of nav row */
  .c1cdf620a {
    align-self: flex-end;
    margin-left: auto;
  }
}

/* === FORCE MOBILE MENU CLOSED BY DEFAULT (specific + !important) === */
@media (max-width: 1024px) {

  /* Hide c6e13af UL until .cb986013 is added */
  #site-navigation #main-menu {
    display: none !important;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  #site-navigation #main-menu.cb986013 {
    display: flex !important;
  }

  /* Auth buttons: hidden until c6e13af is opened */
  #site-navigation #main-menu+.c9b89 {
    display: none !important;
  }

  #site-navigation #main-menu.cb986013+.c9b89 {
    display: flex !important;
  }
}

/* === MOBILE: position absolute for c1cdf620a (burger) === */
@media (max-width: 1024px) {
  .cb19e2f6 {
    position: relative;
    /* anchor for absolute burger */
  }

  .cb19e2f6 .c064ff2d5 {
    position: static;
    row-gap: 0;
  }

  .cb19e2f6 .c8149 {
    display: contents;
  }

  .cb19e2f6 .c8149 .c6e13af.cb986013,
  .cb19e2f6 .c8149 .c6e13af.cb986013 + .c9b89 {
    order: 3;
    flex-basis: 100%;
    width: 100%;
  }

  .cb19e2f6 .c1cdf620a {
    position: absolute;
    right: 12px;
    top: 23px;
    transform: none;
    margin: 0;
    z-index: 20;
    /* above nav elements */
    align-self: auto;
  }
}

/* === CONTENT LAYOUT === */
.c98de21 {
  position: relative;
  width: 100%;
  background-color: var(--color--white);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .c98de21 {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: flex-start;
  }

  .c98de21>article, .c98de21>.c8de32236 {
    flex: 1 1 0;
    min-width: 0;
    order: 1;
  }
}

/* === Fix: nested submenu hover bridge + no gap (desktop) === */
@media (min-width:1025px) {
  .cb19e2f6 .c6e13af .cf06dd .cdb33>.cf06dd {
    left: 100%;
    margin-left: 10px;
  }

  .cb19e2f6 .c6e13af .cf06dd .cdb33:hover>.cf06dd, .cb19e2f6 .c6e13af .cf06dd .cdb33:focus-within>.cf06dd, .cb19e2f6 .c6e13af .cf06dd .cdb33>.cf06dd:hover, .cb19e2f6 .c6e13af .cf06dd .cdb33>.cf06dd:focus-within {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .cb19e2f6 .c6e13af .cf06dd .cdb33 {
    position: relative;
  }

  .cb19e2f6 .c6e13af .cf06dd .cdb33::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 6px;
    height: 100%;
  }
}

@media (max-width: 1024px) {

  /* Default: keep closed */
  .cb19e2f6 .c6e13af>.cdb33>.cf06dd {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease;
  }

  .cb19e2f6 .c6e13af>.cdb33:hover>.cf06dd, .cb19e2f6 .c6e13af>.cdb33:focus-within>.cf06dd {
    max-height: 80vh !important;
    /* open dynamically but capped to screen */
    overflow-y: auto !important;
    /* allow scroll inside long lists */
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    padding: 6px 0;
  }

  .cb19e2f6 .c6e13af>.cdb33>.cf06dd>li>a {
    background: rgba(0, 0, 0, 0.35);
    margin: 4px 0;
    padding: 12px 14px;
  }

  /* Small scrollbar */
  .cb19e2f6 .c6e13af>.cdb33>.cf06dd::-webkit-scrollbar {
    width: 6px;
  }

  .cb19e2f6 .c6e13af>.cdb33>.cf06dd::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }
}

.c47e29 {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.c47e29.c6bf469d7 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c2f10f5f4 {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.c3ea8042 {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color--sunrise-dark-1) 0%, var(--color--sunrise-primary-1) 55%, var(--color--sunrise-dark-3) 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.c1d04458 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.c17d1a9ff {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}

.cc349e {
  margin-left: auto;
  margin-right: 56px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  transition: background .2s ease, transform .2s ease;
}

.cc349e:hover {
  background: rgba(255, 179, 0, .2);
  transform: scale(1.05);
}

.cbb7ceac6 {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  transition: background .2s ease, transform .2s ease;
}

.cbb7ceac6:hover {
  background: rgba(255, 179, 0, .2);
  transform: scale(1.05);
}

.cc4748 {
  flex: 1 1 auto;
  min-height: 0;
  background: #02070d;
}

.c596110a {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #02070d;
}

.c25896 {
  display: flex;
  justify-content: center;
  padding: 18px 24px 24px;
  background: linear-gradient(135deg, var(--color--sunrise-dark-1) 0%, var(--color--sunrise-primary-1) 55%, var(--color--sunrise-dark-3) 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.c4cdd11 {
  text-transform: uppercase;
}

@media (max-width:767px) {
  .c47e29 {
    padding: 12px;
  }
}

@media (max-width:767px) {
  .c3ea8042 {
    width: 100%;
    height: min(86vh, 680px);
    border-radius: 18px;
  }
}

@media (max-width:767px) {
  .c1d04458 {
    padding: 16px 18px;
  }
}

@media (max-width:767px) {
  .c17d1a9ff {
    font-size: 18px;
    padding-right: 36px;
  }
}

@media (max-width:767px) {
  .cc349e {
    margin-right: 52px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

@media (max-width:767px) {
  .c25896 {
    padding: 14px 16px 18px;
  }
}

@media (max-width:767px) {
  .c4cdd11 {
    width: 100%;
    min-width: 0;
  }
}

/* === CASINO HERO === */
.c3e39d6 {
  background: radial-gradient(ellipse at 70% 50%, #7a2a2a 0%, #532429 45%, #3d1515 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cbb56 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cb2b9406b {
  flex: 0 0 50%;
  padding: 48px 0;
  z-index: 2;
}

.c697d {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.c05ecbbd {
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
  letter-spacing: -1px;
  white-space: pre-line;
}

.c697d::before {
  content: "Welcome Bonus";
}

.c05ecbbd::before {
  content: "100% UP TO $2000";
  display: block;
}

.c05ecbbd::after {
  content: "+ 250 FREE SPINS";
  display: block;
}

@keyframes heroBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(var(--gold-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0);
  }
}

.c061531d8 {
  animation: heroBtnPulse 2s ease-out infinite;
}

.c80e437 {
  flex: 0 0 50%;
  position: relative;
  height: 380px;
  overflow: visible;
}

.ca11f37 {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  height: 420px;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-composite: intersect;
}

.cf099c83, .cc619b6b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cf099c83 {
  z-index: 0;
}

.cc619b6b {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.cc619b6b.cc64a8 {
  opacity: 1;
}

/* ══════════════════════
   MOBILE < 780px
══════════════════════ */
@media (max-width: 780px) {

  .c3e39d6 {
    min-height: auto;
    align-items: flex-end;
  }

  .c3e39d6 .c051c762e {
    padding: 0 !important;
  }

  .cbb56 {
    flex-direction: column;
    position: relative;
    min-height: auto;
  }

  .cb2b9406b {
    flex: 0 0 auto;
    width: 100%;
    padding: 24px 0 32px;
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 40%;
    background: linear-gradient(to top, rgba(45, 15, 15, 0.98) 0%, rgba(45, 15, 15, 0.85) 55%, transparent 100%);
  }

  .c05ecbbd {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
  }

  .c80e437 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Lățimea video-ului 16:9 cât ecranul */
    width: 100vw;
    height: auto;
    flex: none;
    z-index: 1;
  }

  .ca11f37 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    -webkit-mask-image:
      linear-gradient(to bottom, black 0%, black 50%, transparent 95%),
      linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to bottom, black 0%, black 50%, transparent 95%),
      linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
  }

  .ca11f37 .cf099c83, .ca11f37 .cc619b6b {
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .c05ecbbd {
    font-size: clamp(22px, 8vw, 30px);
  }

  .c061531d8 {
    font-size: 13px;
    padding: 13px 26px;
  }
}

/* ===== GAMES CAROUSELS ===== */
.c89e5d9 {
  width: 100%;
  max-width: var(--container);
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.c8f00 {
  display: flex;
  flex-direction: column
}

.c4779f9b6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px
}

.c9b0fc5b {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 10px;
}

.c9b0fc5b::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #a93725, transparent);
}

.c7ff4 {
  display: flex;
  align-items: center;
  gap: 8px
}

.ccb2b1c00 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, border-color .2s, background .2s
}

.ccb2b1c00:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: var(--surface2)
}

.c7ff4 .c6bff {
  display: none;
  align-items: center;
  gap: 4px
}

@media (max-width:1024px) {
  .c7ff4 .c6bff {
    display: flex
  }
}

.c7ff4 .c0cdd69dc, .c7ff4 .cff012 {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s
}

.c7ff4 .c0cdd69dc:hover, .c7ff4 .cff012:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: var(--surface2)
}

.c7ff4 .cdc1d85 {
  width: 16px;
  height: 16px;
  fill: currentColor
}

.cb98bb4 {
  position: relative;
  width: 100%
}

.c53699 {
  --gap: 18px;
  display: flex;
  gap: var(--gap);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  --cols: 6
}

.c53699::-webkit-scrollbar {
  display: none
}

.cd349c2a7 {
  flex: 0 0 calc((100% - ((var(--cols) - 1) * var(--gap))) / var(--cols));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.23, 1.2, .32, 1)
}

.c7941 {
  overflow: visible;
}

.c7941 {
  align-self: flex-start;
}

.cc4e0ced {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 14px;
  width: 100%;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  border: 1px dashed var(--border);
  color: var(--text);
  font: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 1 / 1.25;
  transition: background .2s, border-color .2s, transform .2s;
}

.cc4e0ced:hover,
.cc4e0ced:focus-visible {
  background: var(--surface2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.cd78c1 {
  color: color-mix(in srgb, var(--text) 55%, transparent);
  display: inline-flex;
}

.cd78c1 svg {
  fill: currentColor;
}

.cc471 {
  font-size: 13px;
  line-height: 1.35;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}

.cc471::before {
  content: "Show all c89e5d9";
}

.c5ca5cd9 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  color: var(--text);
  background: transparent;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .18s ease, color .18s ease;
}

.c5ca5cd9::before {
  content: "See all";
}

.cc4e0ced:hover .c5ca5cd9,
.cc4e0ced:focus-visible .c5ca5cd9 {
  background: var(--gold);
  color: #000;
}

.c06c3 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1.25;
  background: #1a1a28;
  cursor: pointer;
  border: 4px solid var(--color--white);
  box-shadow: var(--card-shadow);
  transition: border-color .3s ease, box-shadow .3s ease
}

.c06c3 img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .5s cubic-bezier(.2, .9, .2, 1), filter .3s ease
}

.c06c3 img[src$=".svg"] {
  object-fit: cover;
  object-position: top;
}

.cd349c2a7:hover .c06c3 img {
  transform: scale(1.06);
  filter: blur(3px) brightness(.75)
}

.c4f737da {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 3
}

.cd349c2a7:hover .c4f737da {
  opacity: 1;
  pointer-events: auto
}

.cdba22bc {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--gradient--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 6px rgba(245, 166, 35, .18), 0 8px 28px rgba(0, 0, 0, .6);
  transition: transform .2s cubic-bezier(.23, 1.2, .32, 1), box-shadow .2s ease;
  transform: scale(.85)
}

.cdba22bc:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 0 10px rgba(245, 166, 35, .22), 0 10px 32px rgba(0, 0, 0, .7)
}

.cdba22bc:active {
  transform: scale(.96) !important
}

.cdba22bc svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
  margin-left: 3px
}

.c88a99c3 {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--t), opacity var(--t), background var(--t);
  text-decoration: none
}

.cd349c2a7:hover .c88a99c3 {
  transform: translateY(0);
  opacity: 1
}

.c88a99c3:hover {
  color: #fff;
  background: rgba(0, 0, 0, .70)
}

.cf1d8f31 {
  padding: 10px 2px 0
}

.ce40b6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s
}

.cd349c2a7:hover .ce40b6 {
  color: var(--accent)
}

.c4803 {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.c0cdd69dc:focus, .cff012:focus {
  outline: none;
  box-shadow: var(--focus)
}

@media (max-width:1024px) {
  .c53699 {
    --cols: 4 !important
  }
}

@media (max-width:768px) {
  .c53699 {
    --cols: 3 !important
  }

  .c9b0fc5b {
    font-size: 14px
  }

  .ccb2b1c00 span {
    display: none
  }
}

@media (max-width:480px) {
  .c53699 {
    --cols: 2 !important
  }

  .c4779f9b6 {
    gap: 10px
  }
}

/* Random slots injected into internal-page content by build.js */
.ca33331 {
  --cols: 6;
  --gap: 18px;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gap);
  padding: 0;
  list-style: none;
}

.ca33331 > .cd349c2a7 {
  flex: unset;
  width: 100%;
  max-width: none;
  min-width: 0;
}

@media (max-width:1024px) {
  .ca33331 { --cols: 4; }
}
@media (max-width:768px) {
  .ca33331 { --cols: 3; }
}

@media (max-width:559.98px) {
  .ca33331 {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .ca33331 > .cd349c2a7 {
    flex: 0 0 42%;
    max-width: 180px;
    min-width: 140px;
    scroll-snap-align: start;
  }

  .ca33331[data-scroll="start"] {
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, black calc(100% - 40px), transparent);
  }
  .ca33331[data-scroll="middle"] {
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  }
  .ca33331[data-scroll="end"] {
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px);
    mask-image: linear-gradient(to right, transparent, black 40px);
  }
}

.deploy-slots__actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slots-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.slots-all:hover,
.slots-all:focus-visible {
  background: var(--gold);
  color: #000;
}

/* === BREADCRUMBS === */
.caf58817 {
  margin: 20px auto 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color--neutral-11);
}

.c194d {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.caf58817 .c0ae7d2f a {
  color: var(--color--neutral-12);
  text-decoration: none;
  transition: color .25s ease;
}

.caf58817 .c0ae7d2f a:hover {
  color: var(--color--sunrise-primary-1);
}

.caf58817 .cc2eb7332 {
  font-size: 12px;
  color: rgba(var(--sunrise-dark-1-rgb), .45);
}

.caf58817 .cc2eb7332::before {
  content: "›";
  font-weight: 900;
  font-size: 14px;
  color: rgba(var(--sunrise-dark-1-rgb), .55);
  display: inline-block;
}

.caf58817 .c53731a9 {
  color: var(--color--sunrise-primary-1);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .caf58817 {
    margin: 20px auto;
  }
}

/* MOBILE MENU â€” chevron toggle */
@media (max-width:1024px) {
  #site-navigation .c6e13af li.cdb33 {
    position: relative;
  }

  #site-navigation .c6e13af li.cdb33>a {
    position: relative;
    padding-right: 44px;
  }

  #site-navigation .c6e13af li.cdb33>.cf06dd {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease;
  }
}

/* PARENT label align (mobile) */
@media (max-width:1024px) {
  .cb19e2f6 .c6e13af>.cdb33>a {
    justify-content: flex-start !important;
    text-align: left;
    min-height: 44px;
    padding-right: 44px;
  }

  .cb19e2f6 .c6e13af>.cdb33>a::after {
    display: none !important;
  }
}

/* Entry title */
.cad42 {
  font-size: 34px;
  font-weight: 700;
  color: var(--color--neutral-12);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px !important;
}

.cad42::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  border-radius: 2px;
  transition: width .4s ease;
}

.cad42:hover::after {
  width: 100%;
}

@media (max-width:768px) {
  .cad42 {
    font-size: 27px;
  }

  .cad42::after {
    width: 50px;
    height: 2px;
    right: 0;
    margin: 0 auto;
  }
}

/* Entry content */
.ccf88839f p {
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color--neutral-12);
  font-weight: 400;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;
}

.ccf88839f a {
  position: relative;
  color: #d52b1e;
  text-decoration: none;
  transition: color .25s ease;
}

.ccf88839f a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--gradient--electric-grass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
  border-radius: 1px;
}

.ccf88839f a:hover {
  color: #f90;
}

.ccf88839f a:hover::after {
  background: #f90;
  transform: scaleX(1);
  transform-origin: left;
}

.ccf88839f ul {
  margin: 0 0 1.6em 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
  color: var(--color--neutral-12);
}

.ccf88839f ul:not(.ca33331) li {
  position: relative;
  margin: 0;
  padding-left: calc(8px + .8em);
  line-height: 1.4;
}

.ccf88839f ul:not(.ca33331) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px)/2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  box-shadow: 0 0 8px rgba(60, 176, 100, .45);
}

.ccf88839f .ca33331,
.ccf88839f .ca33331 > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ccf88839f .ca33331 > li::before {
  content: none;
}

.ccf88839f .ca33331 {
  margin: 24px 0 0;
}

.ccf88839f ul ul {
  margin-top: .4em;
}

.ccf88839f ul ul li {
  padding-left: calc(6px + .8em);
}

.ccf88839f ul ul li::before {
  top: calc((1.6em - 6px)/2);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px rgba(60, 176, 100, .35);
}

.ccf88839f ol {
  margin: 0 0 1.6em 1.2em;
  padding: 0;
  list-style: decimal outside;
  line-height: 1.6;
  color: var(--color--neutral-12);
}

.ccf88839f ol li {
  margin: 0 0 .7em;
  font-variant-numeric: tabular-nums;
}

.ccf88839f ol li::marker {
  color: var(--gradient--luminous-vivid-orange-to-vivid-red);
  font-weight: 800;
}

.ccf88839f li>ul, .ccf88839f li>ol {
  margin-top: .4em;
}

@media (prefers-reduced-motion:reduce) {
  .ccf88839f a::after {
    transition: none;
  }
}

/* Article images */

.ccf88839f img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  max-height: 90vh;
  object-fit: contain;
}

/* === Footer === */
.c35375f {
  background-color: var(--color--sunrise-primary-1);
  color: rgba(var(--sunrise-light-1-rgb), .75);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(var(--sunrise-light-1-rgb), .08);
  margin-top: 20px;
}

.c35375f .c37897 {
  padding: 30px 0;
}

.c35375f .c93c4 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.c35375f .c93c4 a {
  color: rgba(var(--sunrise-light-1-rgb), .9);
  font-size: 16px;
  text-decoration: none;
  transition: color .2s ease;
}

.c35375f .c93c4 a:hover {
  color: var(--accent-3);
}

@media (max-width: 640px) {
  .c35375f .c37897 {
    padding: 16px 0;
  }

  .c35375f .c93c4 {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .c35375f .c93c4 > li {
    width: 100%;
  }

  .c35375f .c93c4 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: rgba(var(--sunrise-light-1-rgb), .05);
    border: 1px solid rgba(var(--sunrise-light-1-rgb), .08);
    border-radius: 12px;
    color: var(--color--white);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }

  .c35375f .c93c4 a::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(var(--sunrise-light-1-rgb), .7);
    border-top: 2px solid rgba(var(--sunrise-light-1-rgb), .7);
    transform: rotate(45deg);
    transition: transform .2s ease, border-color .2s ease;
  }

  .c35375f .c93c4 a:hover,
  .c35375f .c93c4 a:focus-visible {
    background: rgba(var(--sunrise-light-1-rgb), .08);
    border-color: rgba(var(--sunrise-light-1-rgb), .18);
    color: var(--color--white);
  }

  .c35375f .c93c4 a:active {
    transform: scale(.99);
  }

  .c35375f .c93c4 a:hover::after,
  .c35375f .c93c4 a:focus-visible::after {
    border-color: var(--accent-3);
    transform: translateX(2px) rotate(45deg);
  }
}

.c35375f .cfae620b0 {
  margin: 0;
  color: rgba(var(--sunrise-light-1-rgb), .8);
}

.c3d7694d {
  background: var(--color--sunrise-dark-2);
  padding: 30px 0;
  color: var(--color--white);
}

.c3d7694d a {
  color: var(--color--white);
  text-decoration: none;
}

.c3d7694d a:hover {
  text-decoration: underline;
}

.c1b0e6a1 {
  margin: 0 0 20px;
  text-align: center;
}

.c34bc970 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.c498cc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c28ff {
  max-height: 48px;
  object-fit: contain;
  transition: transform .25s ease, opacity .25s ease;
  filter: grayscale(100%) opacity(.9);
}

.c28ff:hover {
  transform: scale(1.05);
  filter: none;
  opacity: 1;
}

/* ===========================
   GOLD BUTTON — clasa reutilizabila
   Foloseste: <a class="cdb7a"> sau <button class="cdb7a">
   =========================== */
.cdb7a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  background-image: var(--gradient--gold);
  color: var(--text);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  padding: 12px 20px;
  border-radius: 9px;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), .35);
  transition: filter .2s ease, transform .15s ease, box-shadow .2s ease;
}

.cdb7a:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(var(--gold-rgb), .55);
  color: #000;
  text-decoration: none;
}

.cdb7a:active {
  transform: translateY(0);
  filter: brightness(.96);
  box-shadow: 0 2px 8px rgba(var(--gold-rgb), .3);
}

.cdb7a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .55);
}

/* size modifiers */

.cea0c {
  font-size: 1.125rem;
  padding: 15px 28px;
  border-radius: 11px;
}

/* === AUTH BOTTOM MOBILE === */
.c1518d {
  display: none;
}

@media (max-width: 1024px) {
  .c1518d {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    background: #171717;
    border-top: 1px solid rgba(255, 255, 255, .1);
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
  }

  .c1518d.cc64a8 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .c1518d .c9b89 {
    display: flex;
    gap: 10px;
  }

  .c1518d .cdac6f5 {
    flex: 1;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 14px transparent !important;
  }

  .c1518d .cdac6f5.cc402e {
    background: none;
    color: var(--gold);
    border: 1px solid var(--gold);
  }

  .c1518d .cdac6f5.cc402e:hover {
    background: rgba(var(--gold-rgb), .1);
  }

  .c1518d .cdac6f5.cb8c6d80 {
    background-image: var(--gradient--gold);
    color: var(--text);
  }

  .c35375f {
    padding-bottom: 50px;
  }
}

/* === Collapsible article (home only) === */
article.ca10e83 {
  position: relative;
}

article.ca10e83.c560474a .ccf88839f {
  max-height: 350px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 20%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 20%, transparent 100%);
}

.ce827 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 10px 24px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

article.ca10e83 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

article.ca10e83 .ce827 {
  align-self: center;
}

.ce827:hover,
.ce827:focus-visible {
  background: var(--gold);
  color: var(--text);
  box-shadow: 0 6px 18px -8px rgba(var(--gold-rgb), .55);
}

.ccc55d043 {
  transition: transform .3s ease;
}

article.ca10e83.cb99463cb .ccc55d043 {
  transform: rotate(180deg);
}

/* === FAQ (processFaq output: <section id="faq"><h2>FAQ</h2><details class="faq-item">…</details>) === */
.faq {
  flex: 0 0 100%;
  width: 100%;
  order: 2;
}

.faq > h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.faq > h2::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--text);
}

.faq-item[open] > .faq-item__body {
  color: #262626;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 0;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.faq-item__summary h3::after {
  content: none;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: var(--gradient--gold);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}

.faq-item[open] > .faq-item__summary .faq-item__icon {
  transform: rotate(180deg);
  box-shadow: 0 6px 18px -8px rgba(var(--gold-rgb), .55);
}

.faq-item__body {
  padding-top: 12px;
  color: var(--text);
  line-height: 1.55;
}

.faq-item__body > *:first-child { margin-top: 0; }
.faq-item__body > *:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .faq {
    padding-top: 20px;
  }
  .faq-item {
    padding: 12px 16px;
  }
}

/* === Last updated === */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), .12), rgba(var(--gold-rgb), .04));
  border: 1px solid rgba(var(--gold-rgb), .25);
  border-radius: 999px;
  color: rgba(var(--text-rgb, 20, 20, 20), .7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .01em;
}

.last-updated::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffc700'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8Zm.5-13H11v6l5.2 3.1.8-1.3-4.5-2.7Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.last-updated time {
  color: var(--gold);
  font-weight: 700;
}

/* === Contact form (contact-us c8de32236) === */
.c0b75bcb1 {
  padding: 2rem 1.5rem;
  max-width: 600px;
  margin: 24px auto 30px;
  background: rgba(var(--gold-rgb), .05);
  border: 1px solid rgba(var(--gold-rgb), .3);
  border-radius: 12px;
}

.c0b75bcb1 form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.c0b75bcb1 .ce918f7b {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.c0b75bcb1 .ce918f7b .c661ec6e6 {
  flex: 1 1 auto;
}

.c0b75bcb1 .c661ec6e6 span {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.c0b75bcb1 input,
.c0b75bcb1 textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(var(--accent-rgb), .35);
  border-radius: 8px;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
}

.c0b75bcb1 input {
  height: 46px;
}

.c0b75bcb1 input:focus,
.c0b75bcb1 textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .25);
}

.c0b75bcb1 .cb158fb {
  align-self: flex-start;
  min-width: 180px;
  height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.c8da0343 {
  text-align: center;
}

.c8da0343 p {
  margin: 0 !important;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

[data-elem="form"][data-submit="true"] [data-elem="form-message"] {
  display: block;
}

[data-elem="form"] [data-elem="form-message"],
[data-elem="form"][data-submit="true"] [data-elem="form-main"] {
  display: none;
}

@media (max-width: 768px) {
  .c0b75bcb1 {
    padding: 1.25rem 1rem;
    max-width: none;
  }
  .c0b75bcb1 .ce918f7b {
    flex-direction: column;
    width: 100%;
  }
  .c0b75bcb1 .ce918f7b .c661ec6e6 {
    width: 100%;
  }
  .c0b75bcb1 .cb158fb {
    width: 100%;
    align-self: stretch;
  }
}

/* === 404 c8de32236 === */
.cba3fc {
  flex: 1 1 100%;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cb5b7ab7 {
  font-size: clamp(80px, 18vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 6px 24px rgba(var(--gold-rgb), .35);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.c7f86d {
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--text);
  margin: 0 0 12px;
}

.c6b84a {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(var(--text-rgb, 20, 20, 20), .7);
  line-height: 1.6;
}

.c1879755f {
  display: flex;
  justify-content: center;
}

/* === Article Navigation (TOC) === */
.nav.toc {
  margin: 20px 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), .08), rgba(var(--gold-rgb), .02));
  border: 1px solid rgba(var(--gold-rgb), .35);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.nav.toc .toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: .75rem;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  border: 0;
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}

.nav.toc .toc__toggle::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  margin-right: .5rem;
  background-image: var(--gradient--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.nav.toc .toc__toggle:hover {
  background: rgba(var(--gold-rgb), .1);
  color: var(--accent);
}

.toc__toggle-label {
  font-weight: 700;
  letter-spacing: .01em;
  flex: 1;
}

.toc__toggle-icon {
  transition: transform .3s ease;
  flex-shrink: 0;
  color: var(--accent);
}

.nav.toc[data-open="true"] .toc__toggle-icon {
  transform: rotate(180deg);
}

.nav.toc[data-open="true"] .toc__toggle {
  background: rgba(var(--gold-rgb), .12);
  border-bottom: 1px solid rgba(var(--gold-rgb), .3);
}

.nav.toc .toc__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
  padding: 0 18px;
}

.nav.toc[data-open="true"] .toc__body {
  max-height: 2000px;
  opacity: 1;
  padding: 14px 18px 16px;
}

.nav.toc .toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 260px 2;
  column-gap: 24px;
}

.nav.toc .toc__list li {
  break-inside: avoid;
  margin: 0;
  list-style: none;
  border-bottom: 1px dashed rgba(0, 0, 0, .08);
}

.nav.toc .toc__list li:last-child {
  border-bottom: 0;
}

.nav.toc .toc__list a {
  position: relative;
  display: block;
  padding: 8px 10px 8px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: color .2s ease, padding .2s ease, background .2s ease;
  border-radius: 6px;
}

.nav.toc .toc__list a::before {
  content: '›';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
  transition: transform .2s ease, color .2s ease;
}

.nav.toc .toc__list a:hover,
.nav.toc .toc__list a:focus {
  color: var(--accent);
  background: rgba(var(--gold-rgb), .08);
  padding-left: 24px;
}

.nav.toc .toc__list a:hover::before,
.nav.toc .toc__list a:focus::before {
  transform: translate(3px, -50%);
}

@media (max-width: 640px) {
  .nav.toc .toc__list {
    columns: 1;
  }
  .nav.toc .toc__toggle {
    font-size: 1rem;
    padding: 12px 14px;
  }
  .nav.toc .toc__body,
  .nav.toc[data-open="true"] .toc__body {
    padding-left: 14px;
    padding-right: 14px;
  }
}
