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

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

html {
    scroll-behavior: smooth;
    background: #4b0a4e
}

body {
    font-family: 'Oswald', sans-serif;
    background: #4b0a4e;
    color: #f0e6f0;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: #1795e3;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #81de22
}

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

button {
    cursor: pointer;
    font-family: 'Oswald', sans-serif
}

.xk7f2a {
    display: none
}

.bq9m3r {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap
}

.btn--blue {
    background: #1795e3;
    color: #fff
}

.btn--blue:hover {
    background: #1280c8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(23, 149, 227, .4)
}

.btn--green {
    background: #81de22;
    color: #1a0a1e
}

.btn--green:hover {
    background: #6ec71a;
    color: #1a0a1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(129, 222, 34, .4)
}

.btn--sm {
    padding: 7px 16px;
    font-size: 13px
}

.btn--lg {
    padding: 14px 32px;
    font-size: 17px
}

.header-wrap {
    background: #332d32;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: wrap
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

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

.header-nav a {
    color: #e8d8e8;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.header-nav a:hover {
    background: rgba(129, 222, 34, .12);
    color: #81de22
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.lang-drop {
    position: relative
}

.lang-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #e8d8e8;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Oswald', sans-serif
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .14)
}

.lang-btn svg {
    width: 14px;
    height: 14px
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #2a252a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    min-width: 130px;
    overflow: hidden;
    display: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.lang-menu.open {
    display: block
}

.lang-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: #e8d8e8;
    transition: background .2s
}

.lang-menu a:hover {
    background: rgba(129, 222, 34, .1);
    color: #81de22
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8d8e8;
    border-radius: 2px;
    transition: all .3s
}

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

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

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

.hero-section {
    position: relative;
    background: #2a0a2e;
    min-height: 520px;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/buffalo-hero-banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 5, 35, .88) 0%, rgba(30, 5, 35, .55) 60%, rgba(30, 5, 35, .2) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%
}

.hero-text {
    flex: 1;
    max-width: 580px
}

.hero-badge {
    display: inline-block;
    background: rgba(129, 222, 34, .18);
    border: 1px solid rgba(129, 222, 34, .4);
    color: #81de22;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px
}

.hero-text h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hero-text p {
    font-size: 16px;
    color: #cdb8cd;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.hero-demo-wrap {
    flex-shrink: 0;
    width: 340px;
    background: rgba(0, 0, 0, .45);
    border-radius: 12px;
    border: 2px solid rgba(129, 222, 34, .25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.hero-demo-wrap iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: none
}

.hero-demo-btns {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, .3);
    justify-content: center
}

.breadcrumbs-wrap {
    background: #3a1040;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.breadcrumbs {
    padding: 10px 0;
    font-size: 13px;
    color: #b09ab0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.breadcrumbs a {
    color: #b09ab0;
    transition: color .2s
}

.breadcrumbs a:hover {
    color: #81de22
}

.breadcrumbs span {
    color: #81de22;
    font-weight: 500
}

.bc-sep {
    color: #6b5a6b;
    font-size: 11px
}

.main-content {
    padding: 40px 0 60px;
    flex: 1
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2
}

.section-subtitle {
    font-size: 14px;
    color: #b09ab0;
    margin-bottom: 28px;
    font-weight: 300
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, #81de22 0%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 28px
}

.game-section {
    margin-bottom: 48px
}

.game-section-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap
}

.game-iframe-wrap {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
    background: #1a0a1e;
    border-radius: 12px;
    border: 2px solid rgba(129, 222, 34, .2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.game-iframe-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none
}

.game-iframe-btns {
    display: flex;
    gap: 10px;
    padding: 14px;
    background: rgba(0, 0, 0, .4);
    justify-content: center;
    flex-wrap: wrap
}

.game-details-wrap {
    flex: 1;
    min-width: 280px
}

.table-details {
    width: 100%;
    border-collapse: collapse;
    background: #2a0a2e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1)
}

.table-details thead th {
    background: #332d32;
    color: #cdb8cd;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 10px 14px;
    text-align: left
}

.table-details tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .2s
}

.table-details tbody tr:last-child {
    border-bottom: none
}

.table-details tbody tr:hover {
    background: rgba(129, 222, 34, .05)
}

.table-details td {
    padding: 9px 14px;
    font-size: 14px;
    vertical-align: middle
}

.table-details td:first-child {
    color: #b09ab0;
    font-weight: 400;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px
}

.table-details td:last-child {
    color: #f0e6f0;
    font-weight: 500
}

.td-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #1795e3
}

.tbl-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.tbl-scroll table {
    min-width: 400px
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-bottom: 48px
}

.pros-box, .cons-box {
    background: #2a0a2e;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.pros-box {
    border-top: 3px solid #81de22
}

.cons-box {
    border-top: 3px solid #e34417
}

.pc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pros-box .pc-title {
    color: #81de22
}

.cons-box .pc-title {
    color: #e34417
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pc-list li {
    font-size: 14px;
    color: #d8c8d8;
    padding-left: 22px;
    position: relative;
    line-height: 1.5
}

.pc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0
}

.pros-box .pc-list li::before {
    background: #81de22
}

.cons-box .pc-list li::before {
    background: #e34417
}

.jackpots-section {
    margin-bottom: 48px
}

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

.jackpot-card {
    background: linear-gradient(135deg, #2a0a2e 0%, #3d1048 100%);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(129, 222, 34, .15), transparent 70%)
}

.jackpot-card.gold {
    border-color: rgba(255, 200, 0, .3)
}

.jackpot-card.gold::before {
    background: radial-gradient(circle at 50% -20%, rgba(255, 200, 0, .15), transparent 70%)
}

.jackpot-card.silver {
    border-color: rgba(180, 190, 200, .3)
}

.jackpot-card.silver::before {
    background: radial-gradient(circle at 50% -20%, rgba(180, 190, 200, .1), transparent 70%)
}

.jackpot-card.bronze {
    border-color: rgba(200, 120, 50, .3)
}

.jackpot-card.bronze::before {
    background: radial-gradient(circle at 50% -20%, rgba(200, 120, 50, .1), transparent 70%)
}

.jk-icon {
    font-size: 36px;
    margin-bottom: 8px
}

.jk-level {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.jackpot-card.gold .jk-level {
    color: #ffd700
}

.jackpot-card.silver .jk-level {
    color: #c0cdd8
}

.jackpot-card.bronze .jk-level {
    color: #d4874a
}

.jk-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.jk-amount {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px
}

.jackpot-card.gold .jk-amount {
    color: #ffd700
}

.jackpot-card.silver .jk-amount {
    color: #c0cdd8
}

.jackpot-card.bronze .jk-amount {
    color: #d4874a
}

.jk-players {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 12px
}

.jk-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px
}

.jk-player-name {
    color: #b09ab0
}

.jk-player-win {
    color: #81de22;
    font-weight: 600
}

.jk-refresh {
    font-size: 11px;
    color: #6b5a6b;
    margin-top: 8px
}

.strategies-section {
    margin-bottom: 48px
}

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

.strat-card {
    background: #2a0a2e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .25s, box-shadow .25s
}

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

.strat-img {
    width: 100%;
    height: 160px;
    object-fit: cover
}

.strat-body {
    padding: 16px
}

.strat-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.strat-desc {
    font-size: 13px;
    color: #b09ab0;
    margin-bottom: 14px;
    line-height: 1.5
}

.review-section {
    margin-bottom: 48px
}

.review-block {
    background: #2a0a2e;
    border-radius: 12px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1795e3, #81de22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-info {
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.author-title {
    font-size: 12px;
    color: #b09ab0;
    margin-top: 2px
}

.author-links {
    display: flex;
    gap: 8px;
    margin-top: 4px
}

.author-links a {
    font-size: 11px;
    color: #1795e3
}

.content-placeholder {
    background: rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 20px;
    border: 2px dashed rgba(255, 255, 255, .12);
    color: #8a7a8a;
    font-size: 14px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center
}

.review-block .content-body h1, .review-block .content-body h2, .review-block .content-body h3, .review-block .content-body h4, .review-block .content-body h5, .review-block .content-body h6 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin: 24px 0 12px;
    line-height: 1.3
}

.review-block .content-body h2 {
    font-size: 22px;
    border-bottom: 1px solid rgba(129, 222, 34, .2);
    padding-bottom: 6px
}

.review-block .content-body h3 {
    font-size: 18px;
    color: #81de22
}

.review-block .content-body p {
    margin-bottom: 14px;
    color: #d8c8d8;
    font-size: 15px;
    line-height: 1.65
}

.review-block .content-body ul, .review-block .content-body ol {
    margin: 0 0 14px 20px;
    color: #d8c8d8;
    font-size: 15px
}

.review-block .content-body li {
    margin-bottom: 6px;
    line-height: 1.5
}

.review-block .content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: #1a0a1e;
    border-radius: 8px;
    overflow: hidden
}

.review-block .content-body table th {
    background: #332d32;
    color: #cdb8cd;
    padding: 9px 12px;
    text-align: left;
    font-size: 13px
}

.review-block .content-body table td {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 14px;
    color: #d8c8d8
}

.review-block .content-body a {
    color: #1795e3
}

.review-block .content-body a:hover {
    color: #81de22
}

.review-block .content-body strong, .review-block .content-body b {
    color: #fff
}

.review-block .content-body blockquote {
    border-left: 3px solid #81de22;
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(129, 222, 34, .06);
    color: #cdb8cd;
    border-radius: 0 6px 6px 0
}

.faq-section {
    margin-bottom: 48px
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: #2a0a2e;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .2s;
    line-height: 1.3
}

.faq-q:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-q.open {
    color: #81de22
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #1795e3;
    transition: transform .3s
}

.faq-q.open .faq-icon {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .2s
}

.faq-a.open {
    max-height: 400px
}

.faq-a-inner {
    padding: 0 20px 16px;
    font-size: 14px;
    color: #d8c8d8;
    line-height: 1.65
}

.footer-wrap {
    background: #332d32;
    padding: 40px 0 24px;
    margin-top: auto
}

.footer-top {
    display: grid;
    grid-template-columns:1fr 2fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    align-items: start
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px
}

.footer-desc {
    font-size: 13px;
    color: #9a8a9a;
    line-height: 1.55
}

.footer-nav-col .fn-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #b09ab0;
    margin-bottom: 12px
}

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

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

.footer-nav-links a {
    font-size: 13px;
    color: #9a8a9a;
    transition: color .2s
}

.footer-nav-links a:hover {
    color: #81de22
}

.footer-right {
}

.footer-payments {
    margin-bottom: 16px
}

.footer-payments .fn-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #b09ab0;
    margin-bottom: 10px
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.payment-logo {
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #9a8a9a;
    border: 1px solid rgba(255, 255, 255, .1)
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a8a9a;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .2s;
    text-decoration: none
}

.social-link:hover {
    background: rgba(23, 149, 227, .2);
    border-color: rgba(23, 149, 227, .4);
    color: #1795e3
}

.social-link svg {
    width: 16px;
    height: 16px
}

.footer-mid {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.trust-logo {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #9a8a9a;
    white-space: nowrap
}

.trust-logo.red {
    border-color: rgba(227, 68, 23, .3);
    color: #e34417
}

.trust-logo.green {
    border-color: rgba(129, 222, 34, .3);
    color: #81de22
}

.provider-logo-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.provider-logo-row img {
    height: 28px;
    width: auto;
    filter: brightness(.7);
    transition: filter .2s
}

.provider-logo-row img:hover {
    filter: brightness(1)
}

.footer-bottom {
    padding-top: 20px
}

.footer-legal {
    font-size: 12px;
    color: #6b5a6b;
    line-height: 1.6;
    margin-bottom: 12px
}

.footer-copy {
    font-size: 12px;
    color: #7a6a7a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.footer-copy .au-flag {
    margin-right: 4px
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e34417;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0
}

.widget-wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.widget-toggle {
    background: #81de22;
    color: #1a0a1e;
    border: none;
    border-radius: 10px 0 0 10px;
    padding: 12px 10px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    line-height: 1
}

.widget-toggle:hover {
    background: #6ec71a
}

.widget-panel {
    background: #2a0a2e;
    border: 1px solid rgba(129, 222, 34, .2);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 16px;
    width: 220px;
    display: none;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .4)
}

.widget-panel.open {
    display: block
}

.widget-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #81de22;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 8px
}

.widget-casino {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.wc-item {
    background: #332d32;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.wc-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.wc-rating {
    font-size: 11px;
    color: #ffd700;
    margin-bottom: 6px
}

.wc-btn {
    display: block;
    text-align: center;
    padding: 7px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    transition: all .2s
}

.wc-btn--play {
    background: #81de22;
    color: #1a0a1e;
    margin-bottom: 4px
}

.wc-btn--play:hover {
    background: #6ec71a;
    color: #1a0a1e
}

.wc-btn--bonus {
    background: #1795e3;
    color: #fff
}

.wc-btn--bonus:hover {
    background: #1280c8;
    color: #fff
}

.mobile-hidden {
    display: block
}

.mobile-show {
    display: none
}

@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        gap: 28px
    }

    .hero-demo-wrap {
        width: 100%;
        max-width: 480px
    }

    .game-section-inner {
        flex-direction: column
    }

    .game-details-wrap, .game-iframe-wrap {
        max-width: 100%;
        width: 100%
    }

    .game-iframe-wrap iframe {
        height: 320px
    }

    .footer-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }

    .footer-nav-cols {
        grid-template-columns:1fr 1fr
    }

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

    .strategies-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #332d32;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 2px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 15px
    }

    .burger {
        display: flex
    }

    .header-inner {
        position: relative
    }

    .hero-text h1 {
        font-size: 28px
    }

    .pros-cons {
        grid-template-columns:1fr
    }

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

    .footer-nav-cols {
        grid-template-columns:1fr
    }

    .strategies-grid {
        grid-template-columns:1fr
    }

    .widget-panel {
        width: 180px
    }

    .footer-mid {
        flex-direction: column;
        align-items: flex-start
    }

    .mobile-hidden {
        display: none
    }

    .mobile-show {
        display: block
    }

    .lang-drop {
        order: -1
    }
}

@media (max-width: 480px) {
    .jackpots-grid {
        grid-template-columns:1fr
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start
    }

    .btn--lg {
        width: 100%;
        justify-content: center
    }

    .footer-copy {
        flex-direction: column
    }
}

.wp-content-holder {
    display: none
}

.elementor-phantom {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0
}

.entry-meta {
    display: none
}

.post-nav {
    display: none
}

.site-branding-phantom {
    display: none
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: #2a0a2e
}

::-webkit-scrollbar-thumb {
    background: #6b4a70;
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: #81de22
}

.section-block {
    background: #2a0a2e;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 32px
}

.section-block + .section-block {
    margin-top: 0
}
