:root {
    --clr-bg: #bb3527;
    --clr-dark: #0e0405;
    --clr-btn-blue: #0184a7;
    --clr-btn-green: #00be31;
    --clr-text-light: #f5f0ee;
    --clr-text-muted: #d4c4be;
    --clr-accent: #e8a020;
    --clr-card-bg: #1a0809;
    --clr-card-border: #3a1010;
    --font-main: 'Rajdhani', sans-serif
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--clr-dark)
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

a {
    color: var(--clr-btn-blue);
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: var(--clr-accent)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text-light)
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem)
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem)
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem)
}

.brx-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.brx-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px
}

.brx-box {
    background: rgba(0, 0, 0, .25);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px
}

.brx-header-wrap {
    background: var(--clr-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .6)
}

.brx-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0
}

.brx-logo img {
    height: 52px;
    width: auto;
    display: block
}

.brx-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center
}

.brx-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-muted);
    font-size: .92rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .25s, color .25s;
    white-space: nowrap
}

.brx-nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.brx-nav a svg {
    flex-shrink: 0
}

.brx-header-cta {
    display: flex;
    align-items: center;
    gap: 8px
}

.brx-jackpot-badge {
    background: linear-gradient(135deg, #7b1e0a, #c4320f);
    border: 1px solid #e8a020;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: default
}

.brx-jackpot-badge span {
    display: block;
    font-size: 1.05rem;
    color: var(--clr-accent);
    letter-spacing: .5px
}

.brx-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none
}

.brx-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-light);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.brx-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.brx-burger.active span:nth-child(2) {
    opacity: 0
}

.brx-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.brx-nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--clr-dark);
    padding: 12px 0;
    border-top: 1px solid #2a1010
}

.brx-nav-mobile a {
    padding: 10px 20px;
    color: var(--clr-text-muted);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: 8px
}

.brx-nav-mobile a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05)
}

.brx-nav-mobile.open {
    display: flex
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .95rem;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, filter .2s;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4)
}

.btn:active {
    transform: translateY(0)
}

.btn-play {
    background: var(--clr-btn-green);
    color: #fff
}

.btn-play:hover {
    filter: brightness(1.1);
    color: #fff
}

.btn-bonus {
    background: var(--clr-btn-blue);
    color: #fff
}

.btn-bonus:hover {
    filter: brightness(1.15);
    color: #fff
}

.btn-secondary {
    background: transparent;
    color: var(--clr-btn-blue);
    border: 2px solid var(--clr-btn-blue)
}

.btn-secondary:hover {
    background: var(--clr-btn-blue);
    color: #fff
}

.btn-sm {
    font-size: .82rem;
    padding: 7px 14px
}

.btn-lg {
    font-size: 1.1rem;
    padding: 13px 28px
}

.brx-hero {
    position: relative;
    background: var(--clr-dark);
    overflow: hidden;
    padding: 0
}

.brx-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/bid-red-banner.jpg');
    background-size: cover;
    background-position: center top;
    opacity: .35
}

.brx-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 4, 5, .3) 0%, rgba(187, 53, 39, .7) 60%, var(--clr-bg) 100%)
}

.brx-hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 0 48px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center
}

.brx-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7)
}

.brx-hero-sub {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.7
}

.brx-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.brx-hero-tiles {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px
}

.brx-tile {
    background: rgba(14, 4, 5, .7);
    border: 1px solid var(--clr-card-border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.brx-tile-icon {
    width: 36px;
    height: 36px;
    background: var(--clr-btn-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.brx-tile-label {
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.brx-tile-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.brx-breadcrumb {
    background: rgba(0, 0, 0, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 10px 0
}

.brx-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    list-style: none;
    font-size: .85rem;
    color: var(--clr-text-muted)
}

.brx-breadcrumb li + li::before {
    content: '›';
    margin-right: 4px;
    opacity: .5
}

.brx-breadcrumb a {
    color: var(--clr-text-muted)
}

.brx-breadcrumb a:hover {
    color: var(--clr-accent)
}

.brx-breadcrumb li:last-child {
    color: #fff;
    font-weight: 600
}

.brx-section {
    padding: 48px 0
}

.brx-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px
}

.brx-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--clr-btn-blue);
    border-radius: 2px
}

.brx-demo-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.brx-demo-frame {
    position: relative;
    background: var(--clr-dark);
    border-radius: 12px;
    border: 2px solid var(--clr-card-border)
}

.brx-demo-frame iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block
}

.brx-demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 4, 5, .92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 5
}

.brx-demo-overlay p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    text-align: center;
    max-width: 260px
}

.brx-demo-actions {
    padding: 12px 16px;
    background: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    gap: 12px
}

.brx-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--clr-card-border)
}

.brx-game-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
    font-size: .95rem
}

.brx-game-table tr {
    border-bottom: 1px solid var(--clr-card-border);
    transition: background .2s
}

.brx-game-table tr:hover {
    background: rgba(255, 255, 255, .04)
}

.brx-game-table td {
    padding: 10px 14px;
    vertical-align: middle
}

.brx-game-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 8px
}

.brx-game-table td:last-child {
    color: #fff;
    font-weight: 700
}

.brx-tbl-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--clr-btn-blue)
}

.brx-jackpots {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px
}

.brx-jp-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.brx-jp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.brx-jp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.brx-jp-card.gold::before {
    background: linear-gradient(90deg, #c8960c, #f5d060, #c8960c)
}

.brx-jp-card.silver::before {
    background: linear-gradient(90deg, #7a7a7a, #d4d4d4, #7a7a7a)
}

.brx-jp-card.bronze::before {
    background: linear-gradient(90deg, #a0522d, #d2885a, #a0522d)
}

.brx-jp-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    opacity: .7
}

.brx-jp-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px
}

.brx-jp-card.gold .brx-jp-name {
    color: #f5d060
}

.brx-jp-card.silver .brx-jp-name {
    color: #d4d4d4
}

.brx-jp-card.bronze .brx-jp-name {
    color: #d2885a
}

.brx-jp-amount {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.brx-jp-players {
    text-align: left;
    margin-top: 8px
}

.brx-jp-players p {
    font-size: .8rem;
    color: var(--clr-text-muted);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between
}

.brx-jp-players p span {
    color: var(--clr-accent)
}

.brx-reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px
}

.brx-review-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: 12px;
    padding: 20px;
    transition: transform .3s
}

.brx-review-card:hover {
    transform: translateY(-3px)
}

.brx-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.brx-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--clr-btn-blue);
    overflow: hidden;
    flex-shrink: 0
}

.brx-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.brx-review-name {
    font-weight: 700;
    font-size: 1rem
}

.brx-review-loc {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.brx-stars {
    color: #f5c518;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.brx-review-text {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.brx-review-form {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: 12px;
    padding: 28px;
    max-width: 620px
}

.brx-review-form h3 {
    margin-bottom: 20px
}

.brx-form-group {
    margin-bottom: 16px
}

.brx-form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 6px
}

.brx-form-group input, .brx-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-card-border);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font-main);
    font-size: .95rem;
    transition: border-color .25s
}

.brx-form-group input:focus, .brx-form-group textarea:focus {
    outline: none;
    border-color: var(--clr-btn-blue)
}

.brx-form-group textarea {
    resize: vertical;
    min-height: 100px
}

.brx-form-msg {
    display: none;
    background: rgba(0, 190, 49, .15);
    border: 1px solid var(--clr-btn-green);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--clr-btn-green);
    font-weight: 600;
    margin-top: 12px
}

.brx-form-msg.show {
    display: block
}

.brx-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    border: 2px solid var(--clr-card-border)
}

.brx-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.brx-bonus-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.brx-bonus-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden
}

.brx-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.brx-bonus-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--clr-btn-blue);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase
}

.brx-bonus-casino-name {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.brx-bonus-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 6px
}

.brx-bonus-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.5
}

.brx-bonus-terms {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 10px
}

.brx-swiper-wrap {
    position: relative;
    overflow: hidden
}

.brx-swiper-track {
    display: flex;
    gap: 20px;
    transition: transform .4s ease
}

.brx-swiper-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.brx-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .3s, transform .3s
}

.brx-dot.active {
    background: var(--clr-btn-blue);
    transform: scale(1.3)
}

.brx-strategy-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.brx-strategy-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.brx-strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.brx-strategy-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: rgba(255, 255, 255, .05)
}

.brx-strategy-body {
    padding: 16px
}

.brx-strategy-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.brx-strategy-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.5
}

.brx-content-block {
    background: rgba(0, 0, 0, .2);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--clr-card-border)
}

.brx-content-block h2 {
    margin-bottom: 16px;
    color: var(--clr-accent)
}

.brx-content-block h3 {
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--clr-text-light)
}

.brx-content-block p {
    margin-bottom: 14px;
    line-height: 1.75;
    color: var(--clr-text-muted)
}

.brx-content-block ul, .brx-content-block ol {
    margin-bottom: 14px;
    padding-left: 24px;
    color: var(--clr-text-muted)
}

.brx-content-block ul li, .brx-content-block ol li {
    margin-bottom: 6px;
    line-height: 1.6
}

.brx-content-block a {
    color: var(--clr-btn-blue)
}

.brx-content-block a:hover {
    color: var(--clr-accent)
}

.brx-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: .92rem
}

.brx-content-block table th, .brx-content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-card-border);
    text-align: left
}

.brx-content-block table th {
    background: rgba(0, 0, 0, .4);
    font-weight: 700;
    color: #fff
}

.brx-content-block table td {
    color: var(--clr-text-muted)
}

.brx-content-block blockquote {
    border-left: 4px solid var(--clr-btn-blue);
    padding: 12px 16px;
    background: rgba(1, 132, 167, .1);
    border-radius: 0 8px 8px 0;
    margin-bottom: 14px;
    font-style: italic;
    color: var(--clr-text-muted)
}

.brx-author-block {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 20px
}

.brx-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--clr-btn-blue);
    flex-shrink: 0;
    object-fit: cover
}

.brx-author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px
}

.brx-author-info p {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.brx-author-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap
}

.brx-author-links a {
    font-size: .78rem;
    color: var(--clr-btn-blue);
    border: 1px solid var(--clr-btn-blue);
    padding: 3px 10px;
    border-radius: 4px
}

.brx-author-links a:hover {
    background: var(--clr-btn-blue);
    color: #fff
}

.brx-footer-wrap {
    background: var(--clr-dark);
    border-top: 2px solid #2a0a08;
    padding: 40px 0 20px
}

.brx-footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.brx-footer-logo img {
    height: 48px;
    margin-bottom: 12px
}

.brx-footer-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.brx-footer-heading {
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--clr-accent);
    margin-bottom: 12px
}

.brx-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.brx-footer-links a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color .25s
}

.brx-footer-links a:hover {
    color: #fff
}

.brx-footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.brx-footer-payments span {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-weight: 600
}

.brx-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.brx-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: background .25s, color .25s
}

.brx-footer-socials a:hover {
    background: var(--clr-btn-blue);
    color: #fff
}

.brx-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 20px
}

.brx-trust-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-align: center;
    white-space: nowrap
}

.brx-trust-badge.age18 {
    background: rgba(187, 53, 39, .3);
    border-color: #bb3527;
    color: #ff8a7a;
    font-size: 1.1rem;
    font-weight: 900
}

.brx-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: .78rem;
    color: rgba(255, 255, 255, .35)
}

.brx-footer-bottom a {
    color: rgba(255, 255, 255, .35)
}

.brx-footer-bottom a:hover {
    color: #fff
}

.brx-footer-flag {
    font-size: 1.3rem;
    line-height: 1
}

.brx-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--clr-dark);
    border-top: 2px solid var(--clr-btn-green);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(100%);
    transition: transform .5s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.brx-widget.show {
    transform: translateY(0)
}

.brx-widget-text {
    font-size: .9rem;
    font-weight: 700;
    color: #fff
}

.brx-widget-text strong {
    color: var(--clr-btn-green)
}

.brx-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 8px;
    line-height: 1;
    transition: color .2s
}

.brx-widget-close:hover {
    color: #fff
}

.brx-widget a.btn {
    text-decoration: none !important
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 190, 49, .4)
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 190, 49, 0)
    }
}

.btn-play {
    animation: pulse 2.5s infinite
}

.anim-fadeup {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.anim-fadeup.visible {
    opacity: 1;
    transform: none
}

@media (max-width: 992px) {
    .brx-header-inner {
        grid-template-columns:auto auto auto
    }

    .brx-nav {
        display: none
    }

    .brx-burger {
        display: flex
    }

    .brx-hero-inner {
        grid-template-columns:1fr
    }

    .brx-hero-tiles {
        grid-template-columns:repeat(2, 1fr)
    }

    .brx-demo-grid {
        grid-template-columns:1fr
    }

    .brx-jackpots {
        grid-template-columns:1fr
    }

    .brx-reviews-grid {
        grid-template-columns:1fr
    }

    .brx-bonus-grid {
        display: none
    }

    .brx-strategy-grid {
        grid-template-columns:1fr 1fr
    }

    .brx-footer-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 640px) {
    .brx-hero-tiles {
        grid-template-columns:1fr
    }

    .brx-strategy-grid {
        grid-template-columns:1fr
    }

    .brx-header-cta .btn-bonus {
        display: none
    }

    .brx-footer-grid {
        grid-template-columns:1fr
    }

    .brx-footer-bottom {
        justify-content: center;
        text-align: center
    }
}

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.wp-post-image {
    max-width: 100%
}

.site-header {
    display: block
}

.elementor-widget-container {
    display: block
}

.wp-caption {
    max-width: 100%
}

.alignnone {
    margin: 5px 20px 20px 0
}

.aligncenter {
    display: block;
    margin: 0 auto
}

.wp-block-separator {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute
}

.brx-c7x2a {
    display: none
}

.brx-q9wz {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.brx-r4mk {
    width: 0;
    height: 0;
    position: absolute
}

.brx-fz91 {
    display: none
}

#bonus {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#bonus,
#bonus * {
    box-sizing: border-box;
    min-width: 0;
}

.brx-swiper-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.brx-swiper-track {
    display: flex;
    width: 100%;
    gap: 12px;
    transition: transform .35s ease;
    will-change: transform;
}

.brx-swiper-track .brx-bonus-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.brx-bonus-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--clr-card-border);
    border-radius: 14px;
}

.brx-bonus-badge {
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brx-bonus-casino-name,
.brx-bonus-title,
.brx-bonus-desc,
.brx-bonus-terms {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.brx-bonus-card .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

@media (max-width: 768px) {
    #bonus {
        padding: 30px 14px;
    }

    #bonus .brx-section-title {
        margin-bottom: 18px;
        font-size: 1.35rem;
        line-height: 1.2;
    }

    .brx-swiper-wrap {
        overflow: hidden;
        border-radius: 14px;
    }

    .brx-swiper-track {
        gap: 0;
    }

    .brx-swiper-track .brx-bonus-card {
        flex: 0 0 100%;
        min-height: 100%;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .brx-bonus-casino-name {
        padding-right: 72px;
        font-size: .78rem;
    }

    .brx-bonus-title {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .brx-bonus-desc {
        font-size: .88rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .brx-bonus-badge {
        top: 10px;
        right: 10px;
        font-size: .62rem;
        padding: 3px 6px;
    }

    .brx-bonus-card .btn {
        min-height: 44px;
        padding: 11px 14px;
        font-size: .9rem;
    }

    .brx-swiper-dots {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    #bonus {
        padding: 24px 10px;
    }

    .brx-swiper-track .brx-bonus-card {
        padding: 16px 12px;
    }

    .brx-bonus-casino-name {
        padding-right: 64px;
        font-size: .72rem;
    }

    .brx-bonus-title {
        font-size: 1.08rem;
    }

    .brx-bonus-desc {
        font-size: .82rem;
    }

    .brx-bonus-card .btn {
        font-size: .86rem;
    }
}