html { scroll-behavior: smooth; }

h2[id], h3[id], section[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    h2[id], h3[id], section[id] {
        scroll-margin-top: 80px;
    }
}

:root {
    --br-bg: #0A1812;
    --br-bg-card: #112822;
    --br-bg-moon: #163A2E;
    --br-bamboo: #22C55E;
    --br-bamboo-hover: #4ADE80;
    --br-gold: #EAB308;
    --br-gold-hover: #FACC15;
    --br-jungle-deep: #15803D;
    --br-text: #F4FBE8;
    --br-text-2: #94B09F;
    --br-border: #1E3A2E;
    --br-grad-faq: linear-gradient(180deg, #22C55E 0%, #EAB308 100%);
    --br-font-h: 'Poppins', sans-serif;
    --br-font-b: 'Nunito', sans-serif;
    --br-radius: 16px;
    --br-stack: 1rem;
}

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

html, body {
    margin: 0;
    padding: 0;
    background: var(--br-bg);
    color: var(--br-text);
    font-family: var(--br-font-b);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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


h1, h2, h3, h4, p, ul, ol {
    margin-top: 0;
    margin-bottom: var(--br-stack);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--br-font-h);
    color: var(--br-text);
}

h1 { font-size: 2.25rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 1.75rem; line-height: 1.3; font-weight: 700; }
h3 { font-size: 1.375rem; line-height: 1.35; font-weight: 600; }
h4 { font-size: 1.125rem; line-height: 1.4; font-weight: 600; }

p, ul, ol, li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--br-text);
}

ul, ol { padding-left: 1.3em; }

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

a { color: var(--br-bamboo-hover); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--br-gold-hover); }

.br--container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}


.br--btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--br-font-h);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, color .2s ease, transform .1s ease;
    white-space: nowrap;
    border: none;
    text-decoration: none;
}

a.br--btn:hover,
a.br--btn:focus {
    text-decoration: none;
}

.br--btn-primary {
    background: var(--br-gold);
    color: #fff;
    box-shadow: 0 8px 22px rgba(234, 179, 8, 0.32);
}
.br--btn-primary:hover {
    background: var(--br-gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.br--btn-secondary {
    background: transparent;
    color: var(--br-bamboo-hover);
    border: 1.5px solid var(--br-bamboo);
}
.br--btn-secondary:hover {
    background: rgba(34, 197, 94, 0.10);
    color: var(--br-bamboo-hover);
}

.br--btn-outline {
    background: transparent;
    color: var(--br-bamboo-hover);
    border: 1.5px solid var(--br-bamboo);
    padding: 9px 18px;
    font-size: 14px;
}
.br--btn-outline:hover { background: rgba(34, 197, 94, 0.10); }


.br--header {
    position: sticky;
    top: 0;
    z-index: 150;
    background: rgba(10, 24, 18, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--br-border);
}

.br--header-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.br--header-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.br--header-logo-text {
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -.01em;
}
.br--header-logo-bruno { color: var(--br-text); }
.br--header-logo-casino { color: var(--br-gold); margin-left: 4px; font-size: 16px; }

.br--header-nav { flex: 1; display: flex; justify-content: center; }
.br--header-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.br--header-link {
    color: var(--br-text);
    font-family: var(--br-font-h);
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.br--header-link:hover { color: var(--br-bamboo-hover); }
.br--header-link.is-active { color: var(--br-bamboo); }
.br--header-link-leaf { opacity: .95; }

.br--header-cta { display: inline-flex; gap: 10px; align-items: center; }

.br--header-burger {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}
.br--header-burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    margin-left: -11px;
    margin-top: -1px;
    background: var(--br-bamboo);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.br--header-burger span:nth-child(1) { transform: translateY(-7px); }
.br--header-burger span:nth-child(2) { transform: translateY(0); }
.br--header-burger span:nth-child(3) { transform: translateY(7px); }
.br--header-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.br--header-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.br--header-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.br--header-dropdown {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 140;
    overflow: hidden;
    max-height: 0;
    pointer-events: none;
    transition: max-height .32s ease;
    background: rgba(10, 24, 18, 0.98);
    border-top: 1px solid var(--br-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.br--header-dropdown.is-open {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    pointer-events: auto;
}
.br--header-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.br--header-dropdown-menu li a {
    display: block;
    padding: 0 24px;
    height: 50px;
    line-height: 50px;
    color: var(--br-text);
    font-family: var(--br-font-h);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--br-border);
}
.br--header-dropdown-menu li a:hover { color: var(--br-bamboo-hover); }
.br--header-dropdown-menu li a.is-active {
    color: var(--br-bamboo);
    font-weight: 600;
}
.br--header-dropdown-cta {
    display: flex;
    gap: 10px;
    padding: 16px;
}
.br--header-dropdown-cta .br--btn { flex: 1 1 50%; height: 50px; }

@media (max-width: 1023px) {
    .br--header-nav { display: none; }
}
@media (max-width: 767px) {
    .br--header-cta { display: none; }
    .br--header-burger { display: inline-block; vertical-align: middle; }
}


.br--main { display: block; }


.br--section { padding: 72px 0; position: relative; }
.br--section--alt { background: var(--br-bg-card); }
.br--section--moon { background: var(--br-bg-moon); }
.br--section.br--section--inner-single { padding: 48px 0; }
.br--inner-chunk + .br--inner-chunk { margin-top: 2.25rem; }

@media (max-width: 767px) { .br--section { padding: 48px 0; } }
@media (max-width: 767px) {
    .br--section.br--section--inner-single { padding: 40px 0; }
}


.br--hero {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(70% 60% at 50% 0%, rgba(234,179,8,0.09) 0%, transparent 60%), linear-gradient(180deg, #0A1812 0%, #112822 100%);
    overflow: hidden;
}
.br--hero-deco {
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 220px;
    opacity: .06;
    pointer-events: none;
    color: var(--br-bamboo);
}
.br--hero-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: center;
    position: relative;
}
.br--hero-left .br--hero-title { margin: 0 0 14px; }
.br--hero-left .br--hero-lead { margin: 0; max-width: 560px; }
.br--hero-left { display: flex; flex-direction: column; gap: 18px; }
.br--hero-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.28);
    color: var(--br-gold-hover);
    font-family: var(--br-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-radius: 4px;
}
.br--hero-title {
    margin: 0;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.15;
    font-weight: 700;
}
.br--hero-bonus {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px;
}
.br--hero-bonus-main { font-family: var(--br-font-h); font-weight: 700; color: var(--br-gold); font-size: 56px; line-height: 1; }
.br--hero-bonus-extra { font-family: var(--br-font-h); font-weight: 600; color: var(--br-bamboo-hover); font-size: 20px; }
.br--hero-bonus-sub { color: var(--br-text-2); font-size: 14px; }
.br--hero-lead { color: var(--br-text-2); font-size: 17px; max-width: 520px; }
.br--hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.br--hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--br-text-2);
    font-size: 13px;
    margin-top: 6px;
}
.br--hero-trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--br-bamboo); display: inline-block; }

.br--hero-right { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; }
.br--hero-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    background: linear-gradient(135deg, #112822 0%, #163A2E 100%);
    display: block;
    overflow: hidden;
    line-height: 0;
}
.br--hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--br-bamboo) 0%, var(--br-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.br--hero-image-placeholder {
    color: var(--br-text-2);
    font-family: var(--br-font-h);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
}
.br--hero-image-panda {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.br--hero-image-leaf {
    display: none;
}
.br--hero-image-leaf--tl { top: 16px; left: 16px; width: 54px; animation-delay: 0s; }
.br--hero-image-leaf--tr { top: 24px; right: 20px; width: 38px; animation-delay: 1.4s; transform: scaleX(-1); }
.br--hero-image-leaf--br { bottom: 18px; right: 28px; width: 48px; animation-delay: 2.8s; transform: rotate(180deg); }

@keyframes brFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@media (max-width: 1023px) {
    .br--hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .br--hero-right { order: 2; }
}

@media (max-width: 767px) {
    .br--hero { padding: 56px 0; }
    .br--hero-bonus-main { font-size: 44px; }
}


.br--stats-grove {
    background: var(--br-bg-card);
    padding: 40px 0;
}
.br--stats-grove-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.br--stats-grove-item {
    padding: 12px 24px;
    text-align: center;
    position: relative;
}
.br--stats-grove-item + .br--stats-grove-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--br-jungle-deep), transparent);
}
.br--stats-grove-num {
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: 42px;
    color: var(--br-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.br--stats-grove-label {
    font-family: var(--br-font-h);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--br-text-2);
}

@media (max-width: 767px) {
    .br--stats-grove-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
    .br--stats-grove-item + .br--stats-grove-item::before { display: none; }
    .br--stats-grove-num { font-size: 34px; }
}


.br--card-leaf-row { display: flex; flex-direction: column; gap: 20px; }
.br--card-leaf {
    background: var(--br-bg-card);
    border: 1px solid var(--br-border);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    gap: 18px;
    align-items: center;
    transition: border-color .2s ease, transform .2s ease;
    position: relative;
    overflow: hidden;
}
.br--card-leaf:hover { border-color: var(--br-bamboo); transform: translateY(-2px); }
.br--card-leaf-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.br--card-leaf-rank {
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: 56px;
    color: var(--br-gold);
    line-height: 1;
}
.br--card-leaf-logo {
    width: 120px;
    height: 48px;
    background: linear-gradient(135deg, var(--br-bg-moon), var(--br-border));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--br-text-2);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.br--card-leaf-center { display: flex; flex-direction: column; gap: 6px; }
.br--card-leaf-title { margin: 0; font-size: 1.25rem; color: var(--br-text); }
.br--card-leaf-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--br-text-2);
    font-size: 14px;
}
.br--card-leaf-features li { display: flex; align-items: center; gap: 8px; }
.br--card-leaf-features-leaf { width: 12px; height: 12px; flex-shrink: 0; }
.br--card-leaf-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.br--card-leaf-bonus {
    font-family: var(--br-font-h);
    font-weight: 700;
    color: var(--br-gold);
    font-size: 20px;
    text-align: center;
}

@media (max-width: 1023px) {
    .br--card-leaf { grid-template-columns: 1fr; text-align: left; }
    .br--card-leaf-left { flex-direction: row; align-items: center; justify-content: space-between; gap: 18px; }
}


.br--trail {
    background: var(--br-bg-moon);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.br--trail::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 4px;
    background: linear-gradient(180deg, var(--br-bamboo), var(--br-gold));
    border-radius: 2px;
}
.br--trail-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.br--trail-head h2 { margin: 0; font-size: 1.35rem; }
.br--trail-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 4px;
    color: var(--br-bamboo);
    transition: transform .25s ease;
}
.br--trail.is-collapsed .br--trail-toggle { transform: rotate(-90deg); }
.br--trail-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    overflow: hidden;
    max-height: 1000px;
    transition: max-height .32s ease, margin-top .25s ease;
}
.br--trail.is-collapsed .br--trail-list { max-height: 0; margin-top: 0; }
.br--trail-list li { display: flex; align-items: center; gap: 10px; }
.br--trail-list li a { color: var(--br-text); font-size: 15px; }
.br--trail-list li a:hover { color: var(--br-gold-hover); }
.br--trail-paw { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 767px) { .br--trail-list { grid-template-columns: 1fr; } }


.br--grove-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.br--slot-leaf {
    background: var(--br-bg-card);
    border: 1px solid var(--br-border);
    border-radius: var(--br-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease, transform .2s ease;
}
.br--slot-leaf:hover { border-color: var(--br-bamboo); transform: translateY(-2px); }
.br--slot-leaf-cover {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #163A2E 0%, #1E3A2E 55%, #15803D 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--br-text-2);
    font-family: var(--br-font-h);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
}
.br--slot-leaf-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 40%, rgba(234,179,8,0.12) 0%, transparent 70%);
}
.br--slot-leaf-info { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.br--slot-leaf-title { margin: 0; font-size: 1.1rem; }
.br--slot-leaf-studio { color: var(--br-text-2); font-size: 13px; margin-bottom: 12px; }
.br--slot-leaf-info .br--btn { align-self: flex-start; }

@media (max-width: 767px) { .br--grove-slots-grid { grid-template-columns: 1fr; } }


.br--bamboo-voices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.br--bamboo-voice {
    background: var(--br-bg-card);
    border: 1px solid var(--br-border);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.br--bamboo-voice-head { display: flex; align-items: center; gap: 10px; }
.br--bamboo-voice-icon { color: var(--br-gold); }
.br--bamboo-voice-stars { color: var(--br-gold); letter-spacing: 2px; font-size: 14px; }
.br--bamboo-voice-text { color: var(--br-text); font-size: 15px; margin: 0; }
.br--bamboo-voice-sep { height: 1px; background: var(--br-border); margin: 4px 0; }
.br--bamboo-voice-author { display: flex; align-items: center; gap: 12px; }
.br--bamboo-voice-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--br-bg);
    font-family: var(--br-font-h); font-weight: 700;
    font-size: 16px;
}
.br--bamboo-voice-avatar--green { background: var(--br-bamboo); }
.br--bamboo-voice-avatar--gold { background: var(--br-gold); }
.br--bamboo-voice-avatar--mix { background: linear-gradient(135deg, var(--br-bamboo), var(--br-gold)); }
.br--bamboo-voice-meta { display: flex; flex-direction: column; line-height: 1.3; }
.br--bamboo-voice-name { color: var(--br-text); font-weight: 600; }
.br--bamboo-voice-date { color: var(--br-text-2); font-size: 13px; }

@media (max-width: 1023px) { .br--bamboo-voices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px)  { .br--bamboo-voices { grid-template-columns: 1fr; } }


.br--faq-panda { display: flex; flex-direction: column; gap: 12px; }
.br--faq-panda-item {
    background: var(--br-bg-card);
    border: 1px solid var(--br-border);
    border-radius: 14px;
    padding: 22px 26px;
    position: relative;
    overflow: hidden;
    transition: background .2s ease;
}
.br--faq-panda-item::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--br-grad-faq);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity .2s ease;
}
.br--faq-panda-item.is-open { background: var(--br-bg-moon); }
.br--faq-panda-item.is-open::before { opacity: 1; }

.br--faq-panda-q {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    cursor: pointer;
    font-family: var(--br-font-h);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--br-text);
    user-select: none;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 0;
}
.br--faq-panda-q-title {
    margin: 0;
    flex: 1;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    line-height: 1.35;
    text-align: left;
    margin-top: 0px!important
}
.br--faq-panda-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--br-bg-moon);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--br-border);
}
.br--faq-panda-icon svg { width: 22px; height: 22px; }
.br--faq-panda-chevron {
    margin-left: auto;
    color: var(--br-bamboo);
    transition: transform .25s ease;
    font-size: 1.3rem;
    line-height: 1;
}
.br--faq-panda-item.is-open .br--faq-panda-chevron { transform: rotate(180deg); }
.br--faq-panda-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease, padding .25s ease;
    color: var(--br-text);
}
.br--faq-panda-item.is-open .br--faq-panda-a {
    max-height: 600px;
    padding-top: 14px;
}
.br--faq-panda-a p { color: var(--br-text); margin: 0 0 .6em; }


.br--inner-hero {
    padding: 56px 0 40px;
    background: radial-gradient(70% 60% at 50% 0%, rgba(234,179,8,0.09) 0%, transparent 60%), linear-gradient(180deg, rgba(34,197,94,0.10) 0%, transparent 100%), linear-gradient(180deg, #0A1812 0%, #112822 100%);
}
.br--inner-hero-inner { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.br--breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--br-text-2);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.br--breadcrumbs a { color: var(--br-bamboo-hover); text-decoration: underline; }
.br--breadcrumbs a:hover { color: var(--br-gold-hover); }
.br--breadcrumbs-sep,
.br--breadcrumbs > span { color: var(--br-text-2); }
.br--breadcrumbs-sep { margin: 0 0.2em; }
.br--inner-hero-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    font-weight: 700;
}
.br--inner-hero-lead {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--br-text-2);
    max-width: 60ch;
    margin: 0;
}
@media (max-width: 640px) {
    .br--inner-hero { padding: 40px 0 28px; }
}


.br--section--toc { padding: 28px 0 0; }
.br--toc {
    background: var(--br-bg-card);
    border: 1px solid var(--br-border);
    border-left: 4px solid var(--br-bamboo);
    border-radius: 12px;
    padding: 22px 26px;
    max-width: 760px;
}
.br--toc summary { list-style: none; }
.br--toc summary::-webkit-details-marker { display: none; }
.br--toc-title {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--br-bamboo-hover);
    margin: 0;
    letter-spacing: 0.01em;
}
.br--toc summary::after {
    content: "▾";
    color: var(--br-bamboo);
    font-size: 0.9em;
    transition: transform .2s ease;
}
.br--toc[open] summary::after { transform: rotate(180deg); }
.br--toc[open] .br--toc-list { margin-top: 12px; }
.br--toc-list {
    list-style: none;
    counter-reset: br-toc;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.br--toc-list li {
    counter-increment: br-toc;
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
    color: var(--br-text);
}
.br--toc-list li::before {
    content: counter(br-toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--br-gold);
    line-height: 1.7;
}
.br--toc-list a {
    color: var(--br-text);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color .18s ease, border-color .18s ease;
}
.br--toc-list a:hover,
.br--toc-list a:focus {
    color: var(--br-bamboo-hover);
    border-bottom-color: var(--br-bamboo);
}
@media (max-width: 640px) {
    .br--toc { padding: 18px 20px; border-radius: 10px; }
    .br--toc-list { grid-template-columns: 1fr; gap: 6px; }
    .br--toc-title { font-size: 1rem; }
}


.br--prose { font-size: 1rem; line-height: 1.6; color: var(--br-text); }
.br--prose > :first-child { margin-top: 0; }
.br--prose h2 { margin-top: 2.5rem; }
.br--prose h3 { margin-top: 1.75rem; }
.br--prose p { margin: 0 0 var(--br-stack); color: var(--br-text); }
.br--prose ul,
.br--prose ol { margin: 0 0 var(--br-stack); padding-left: 1.5em; }
.br--prose ul { list-style: disc; }
.br--prose ol { list-style: decimal; }
.br--prose li { margin-bottom: 0.4rem; line-height: 1.6; color: var(--br-text); }
.br--prose li:last-child { margin-bottom: 0; }
.br--prose a { color: var(--br-bamboo); text-decoration: underline; }
.br--prose a:hover { color: var(--br-gold-hover); text-decoration: none; }

.br--prose a.br--btn {
    text-decoration: none;
}
.br--prose a.br--btn-primary,
.br--prose a.br--btn-primary:hover,
.br--prose a.br--btn-primary:focus {
    color: #fff;
    text-decoration: none;
}
.br--prose a.br--btn-secondary,
.br--prose a.br--btn-secondary:hover,
.br--prose a.br--btn-secondary:focus {
    color: var(--br-bamboo-hover);
    text-decoration: none;
}
.br--prose a.br--btn-outline,
.br--prose a.br--btn-outline:hover,
.br--prose a.br--btn-outline:focus {
    color: var(--br-bamboo-hover);
    text-decoration: none;
}
.br--prose img { max-width: 100%; height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; }
.br--prose figure { margin: 1.5rem auto; text-align: center; max-width: 100%; }
.br--prose figcaption { font-size: 0.875rem; color: var(--br-text-2); margin-top: 0.5rem; text-align: center; }
.br--prose .br--author-box-img { margin: 0; }
.br--prose .br--slot-leaf-cover img { margin: 0; }
.br--prose blockquote {
    margin: 0 0 var(--br-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--br-bamboo);
    background: rgba(34,197,94,0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--br-text);
}
.br--prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.br--prose th,
.br--prose td {
    padding: 12px 14px;
    border: 1px solid rgba(34,197,94,0.18);
    text-align: left;
    vertical-align: top;
    color: var(--br-text);
}
.br--prose th { background: rgba(34,197,94,0.12); font-weight: 600; }
.br--prose tbody tr:nth-child(even) td { background: rgba(34,197,94,0.03); }
@media (max-width: 640px) {
    .br--prose { font-size: 0.95rem; }
    .br--prose table { display: block; overflow-x: auto; white-space: nowrap; }
}


.br--404 {
    text-align: center;
    padding: 80px 0;
    min-height: 60vh;
}
.br--404-code {
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: clamp(5rem, 16vw, 9rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--br-bamboo), var(--br-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 10px;
}


.br--footer {
    background: #060F0B;
    border-top: 1px solid var(--br-border);
    padding: 56px 0 28px;
}
.br--footer-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}
.br--footer-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    padding-bottom: 28px;
}
.br--footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.br--footer-logo-text { font-family: var(--br-font-h); font-weight: 700; font-size: 22px; line-height: 1; }
.br--footer-logo-bruno { color: var(--br-text); }
.br--footer-logo-casino { color: var(--br-gold); margin-left: 4px; font-size: 16px; }
.br--footer-tagline {
    color: var(--br-text-2);
    margin: 0;
    flex: 1;
    min-width: 240px;
    font-size: 14px;
}
.br--footer-social {
    list-style: none; margin: 0; padding: 0;
    display: inline-flex; gap: 10px;
}
.br--footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--br-bg-card);
    border: 1px solid var(--br-border);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--br-text-2);
    transition: color .2s ease, border-color .2s ease;
}
.br--footer-social a:hover { color: var(--br-bamboo-hover); border-color: var(--br-bamboo); }
.br--footer-divider { padding: 6px 0 22px; }

.br--footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 14px 0 36px;
}
.br--footer-col h3 {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--br-gold);
    margin: 0 0 14px;
}
.br--footer-col ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.br--footer-col a { color: var(--br-text-2); font-size: 14px; }
.br--footer-col a:hover { color: var(--br-bamboo-hover); }
.br--footer-badges { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.br--footer-badge {
    display: inline-block;
    padding: 6px 10px;
    background: rgba(34,197,94,0.08);
    border: 1px solid var(--br-border);
    border-radius: 4px;
    font-size: 12px;
    color: var(--br-text-2);
}
.br--footer-copyright {
    border-top: 1px solid var(--br-border);
    padding-top: 18px;
    color: var(--br-text-2);
    font-size: 13px;
    text-align: center;
}
.br--footer-copyright p { margin: 0; color: var(--br-text-2); }

@media (max-width: 1023px) { .br--footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px)  { .br--footer-cols { grid-template-columns: 1fr; } }


.br--section-title { text-align: left; margin-bottom: 28px; }
.br--section-lead { color: var(--br-text-2); max-width: 720px; margin: -16px 0 28px; font-size: 16px; }

.br--center { text-align: center; }


.br--section.br--section--author-strip {
    margin: 0;
    padding: 28px 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 40, 34, 0.42) 38%, #060F0B 100%);
    border-top: 1px solid var(--br-border);
}
.br--main:has(.br--section--author-strip) + .br--footer {
    margin-top: 0;
    padding-top: 32px;
    border-top: none;
}
.br--author-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px 28px;
    max-width: 720px;
}
.br--author-box-media {
    flex-shrink: 0;
    text-decoration: none;
}
.br--author-box-img-wrap {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--br-border);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}
.br--author-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.br--author-box-body {
    flex: 1;
    min-width: 0;
}
.br--author-box-kicker {
    margin: 0 0 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--br-bamboo);
    font-family: var(--br-font-h);
}
.br--author-box-name {
    margin: 0 0 10px;
    font-family: var(--br-font-h);
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.2;
}
.br--author-box-name a {
    color: var(--br-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}
.br--author-box-name a:hover,
.br--author-box-name a:focus {
    color: var(--br-bamboo-hover);
    border-bottom-color: var(--br-bamboo);
}
.br--author-box-bio {
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--br-text-2);
}
.br--author-box-more {
    font-family: var(--br-font-h);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--br-gold-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.br--author-box-more:hover,
.br--author-box-more:focus {
    color: var(--br-bamboo-hover);
}
.br--author-page-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.br--author-page-img-wrap {
    width: 140px;
    height: 140px;
}
.br--author-page-role {
    margin: 0;
    font-size: 0.9rem;
    color: var(--br-text-2);
    font-weight: 600;
}
@media (max-width: 560px) {
    .br--author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .br--author-box-body { text-align: center; }
    .br--author-page-head { align-items: center; text-align: center; }
}


.br--prose-img {
    max-width: 750px;
    margin: 2rem auto;
    padding: 0;
    text-align: center;
}
.br--prose-img img {
    width: 100%;
    max-width: 750px;
    height: auto;
    vertical-align: middle;
    border-radius: var(--br-radius);
    border: 1px solid var(--br-border);
    display: block;
    margin: 0 auto;
}
.br--hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    position: relative;
    z-index: 1;
    display: block;
}
.br--inner-hero-visual {
    max-width: 750px;
    margin: 1.25rem auto 0;
    padding: 0;
    text-align: center;
}
.br--inner-hero-visual img {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: var(--br-radius);
    border: 1px solid var(--br-border);
    display: block;
    margin: 0 auto;
}

.br--slots-picks {
    padding: 24px 0 28px;
    background: var(--br-bg);
}
.br--stats-grove + .br--slots-picks,
section.br--section--stats + .br--slots-picks,
section.br--section.br--stats-grove + .br--slots-picks,
section.br--section--alt.br--section--stats-compact + .br--slots-picks {
    padding-top: 16px;
}
.br--slots-picks-heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--br-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--br-text-2);
}
.br--slots-picks-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: stretch;
}
.br--slots-picks-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--br-border);
    outline: none;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 0 0 transparent;
    color: inherit;
    text-decoration: none;
}
a.br--slots-picks-card:hover,
a.br--slots-picks-card:focus {
    color: inherit;
    text-decoration: none;
}
.br--slots-picks-card:focus-visible {
    border-color: var(--br-bamboo);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
}
.br--slots-picks-card:hover {
    border-color: rgba(34, 197, 94, 0.65);
    transform: translateY(-2px);
}
.br--slots-picks-media {
    display: block;
    position: relative;
    aspect-ratio: 232 / 174;
    background: var(--br-bg-card);
}
.br--slots-picks-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.br--slots-picks-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 18, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.br--slots-picks-card:hover .br--slots-picks-overlay,
.br--slots-picks-card:focus-visible .br--slots-picks-overlay {
    opacity: 1;
}
.br--slots-picks-play {
    display: flex;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
@media (max-width: 900px) {
    .br--slots-picks-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}
@media (max-width: 520px) {
    .br--slots-picks {
        padding: 20px 0 24px;
    }
    .br--slots-picks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .br--slots-picks-play svg {
        width: 40px;
        height: 40px;
    }
}

