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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: #5470ca
}

body {
    font-family: 'Oswald', sans-serif;
    background: #5470ca;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh
}

a {
    color: #0076f0;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #ffce0a
}

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    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;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap
}

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

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

.btn--play {
    background: #ffce0a;
    color: #3f1300
}

.btn--play:hover {
    background: #ffd93d;
    color: #3f1300
}

.btn--bonus {
    background: #ffce0a;
    color: #3f1300
}

.btn--bonus:hover {
    background: #ffd93d;
    color: #3f1300
}

.btn--blue {
    background: #0076f0;
    color: #fff
}

.btn--blue:hover {
    background: #0065d1;
    color: #fff
}

.btn--outline {
    background: transparent;
    color: #ffce0a;
    border: 2px solid #ffce0a
}

.btn--outline:hover {
    background: #ffce0a;
    color: #3f1300
}

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

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

/* ===== HEADER ===== */
.site-header {
    background: #3f1300;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}

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

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

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

.header-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffce0a;
    letter-spacing: 1px;
    text-transform: uppercase
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background .2s, color .2s
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #ffce0a
}

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

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

.lang-picker {
    position: relative
}

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

.lang-picker__btn:hover {
    background: rgba(255, 255, 255, .2)
}

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

.lang-picker__dropdown.open {
    display: block
}

.lang-picker__dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap
}

.lang-picker__dropdown a:hover {
    background: rgba(255, 255, 255, .1)
}

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

.burger span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.mobile-ctas {
    display: none;
    align-items: center;
    gap: 6px
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: #3f1300
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-cleo.jpg');
    background-size: cover;
    background-position: center top;
    opacity: .5
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(63, 19, 0, .85) 0%, rgba(84, 112, 202, .4) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%
}

.hero-text {
    flex: 1;
    min-width: 280px
}

.hero-badge {
    display: inline-block;
    background: #ffce0a;
    color: #3f1300;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px
}

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

.hero-title span {
    color: #ffce0a
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 300
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-stat {
    text-align: center
}

.hero-stat__val {
    font-size: 22px;
    font-weight: 700;
    color: #ffce0a;
    display: block
}

.hero-stat__lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .5px
}

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

.hero-demo {
    flex: 0 0 auto;
    width: 440px;
    max-width: 100%
}

.hero-demo-wrap {
    background: rgba(0, 0, 0, .4);
    border: 2px solid rgba(255, 206, 10, .3);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumbs-bar {
    background: rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .6)
}

.breadcrumbs a {
    color: rgba(255, 255, 255, .7)
}

.breadcrumbs a:hover {
    color: #ffce0a
}

.breadcrumbs__sep {
    color: rgba(255, 255, 255, .3)
}

/* ===== SECTIONS ===== */
.section {
    padding: 56px 0
}

.section--dark {
    background: rgba(0, 0, 0, .15)
}

.section--darker {
    background: rgba(0, 0, 0, .25)
}

.section-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    color: #ffce0a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.section-title svg {
    width: 28px;
    height: 28px;
    fill: #ffce0a;
    vertical-align: middle;
    margin-right: 8px
}

.section-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 32px;
    font-weight: 300
}

.section-head {
    margin-bottom: 32px
}

/* ===== DEMO BLOCK ===== */
.demo-block {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 206, 10, .2);
    border-radius: 14px;
}

.demo-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

.demo-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background: rgba(63, 19, 0, .6);
    flex-wrap: wrap
}

.demo-info {
    display: flex;
    gap: 24px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    flex-wrap: wrap
}

.demo-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.demo-info-item span:first-child {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .5px
}

.demo-info-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #ffce0a
}

/* ===== WINNERS TABLE ===== */
.winners-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.winners-table th {
    background: #3f1300;
    color: #ffce0a;
    text-align: left;
    padding: 12px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid rgba(255, 206, 10, .3)
}

.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 14px;
    vertical-align: middle;
    color: #fff
}

.winners-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .15)
}

.winners-table tr:hover td {
    background: rgba(255, 206, 10, .07)
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px
}

.rank-badge--1 {
    background: #ffce0a;
    color: #3f1300
}

.rank-badge--2 {
    background: #c0c0c0;
    color: #3f1300
}

.rank-badge--3 {
    background: #cd7f32;
    color: #fff
}

.rank-badge--other {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.win-amount {
    color: #4dff91;
    font-weight: 700
}

.win-multiplier {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-left: 4px
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3f1300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #ffce0a;
    flex-shrink: 0
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 10px
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 11px);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 206, 10, .2);
    transition: border-color .25s, transform .25s
}

.screenshot-item:hover {
    border-color: #ffce0a;
    transform: scale(1.02)
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

/* ===== BONUS CARDS ===== */
.bonus-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px
}

.bonus-card {
    flex: 0 0 calc(33.333% - 14px);
    background: linear-gradient(145deg, rgba(63, 19, 0, .9), rgba(63, 19, 0, .6));
    border: 1px solid rgba(255, 206, 10, .3);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-snap-align: start;
    transition: border-color .25s, transform .25s;
    min-width: 260px
}

.bonus-card:hover {
    border-color: #ffce0a;
    transform: translateY(-4px)
}

.bonus-card__badge {
    display: inline-block;
    background: #ffce0a;
    color: #3f1300;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    align-self: flex-start
}

.bonus-card__logo {
    height: 36px;
    width: auto;
    border-radius: 6px;
    background: #fff;
    padding: 4px 8px;
    object-fit: contain
}

.bonus-card__casino {
    font-size: 17px;
    font-weight: 700;
    color: #ffce0a
}

.bonus-card__offer {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.bonus-card__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
    font-weight: 300
}

.bonus-card__meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 12px
}

.bonus-card__meta ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.bonus-card__meta li::before {
    content: "✓ ";
    color: #4dff91
}

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

.strategy-card {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
    display: flex;
    flex-direction: column
}

.strategy-card:hover {
    border-color: #0076f0;
    transform: translateY(-4px)
}

.strategy-card__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.strategy-card__body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.strategy-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #ffce0a
}

.strategy-card__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    font-weight: 300;
    line-height: 1.5;
    flex: 1
}

.strategy-card__btn {
    align-self: flex-start;
    margin-top: auto
}

/* ===== REVIEW CONTENT ===== */
.review-content {
    background: rgba(0, 0, 0, .2);
    border-radius: 14px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.review-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffce0a;
    margin: 24px 0 12px;
    text-transform: uppercase
}

.review-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #ffd93d;
    margin: 20px 0 10px
}

.review-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 16px 0 8px
}

.review-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 14px;
    font-weight: 300
}

.review-content ul, .review-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .85)
}

.review-content li {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: table
}

.review-content table th {
    background: #3f1300;
    color: #ffce0a;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase
}

.review-content table td {
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
    color: rgba(255, 255, 255, .85)
}

.review-content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .04)
}

.review-content a {
    color: #0076f0
}

.review-content a:hover {
    color: #ffce0a
}

.review-content blockquote {
    border-left: 4px solid #ffce0a;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(255, 206, 10, .07);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: rgba(255, 255, 255, .8)
}

.review-content strong, .review-content b {
    color: #fff;
    font-weight: 600
}

.review-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 24px 0
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    overflow: hidden
}

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

.faq-question:hover {
    background: rgba(255, 206, 10, .07)
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: #ffce0a;
    flex-shrink: 0;
    transition: transform .3s
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    padding: 0 20px 18px;
    max-height: 500px
}

/* ===== AUTHOR ===== */
.author-card {
    background: linear-gradient(135deg, rgba(63, 19, 0, .8), rgba(63, 19, 0, .5));
    border: 1px solid rgba(255, 206, 10, .25);
    border-radius: 14px;
    padding: 32px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap
}

.author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #ffce0a;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 206, 10, .1)
}

.author-avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #ffce0a;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 206, 10, .15);
    font-size: 32px;
    font-weight: 700;
    color: #ffce0a;
    flex-shrink: 0
}

.author-body {
    flex: 1;
    min-width: 220px
}

.author-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffce0a;
    margin-bottom: 4px
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 16px;
    font-weight: 300
}

.author-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.author-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .65)
}

.author-meta-item svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 206, 10, .7)
}

.author-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300
}

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

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 118, 240, .2);
    color: #0076f0;
    border: 1px solid rgba(0, 118, 240, .4);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background .2s, color .2s
}

.author-social-link:hover {
    background: #0076f0;
    color: #fff
}

.author-dates {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 12px
}

/* ===== SIMILAR GAMES ===== */
.similar-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px
}

.similar-card {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
    display: flex;
    flex-direction: column
}

.similar-card:hover {
    border-color: #ffce0a;
    transform: translateY(-4px)
}

.similar-card__logo {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    background: rgba(63, 19, 0, .5)
}

.similar-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.similar-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #ffce0a
}

.similar-card__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    line-height: 1.5;
    flex: 1
}

.similar-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto
}

/* ===== FOOTER ===== */
.site-footer {
    background: #3f1300;
    padding: 48px 0 24px;
    margin-top: auto
}

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

.footer-brand {
}

.footer-logo {
    margin-bottom: 14px
}

.footer-logo img {
    height: 40px;
    width: auto
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffce0a;
    text-transform: uppercase
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 16px
}

.footer-email {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-email svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 206, 10, .7)
}

.footer-email a {
    color: #0076f0
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffce0a;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    transition: color .2s
}

.footer-nav a:hover {
    color: #ffce0a
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 28px 0
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-logos img {
    height: 28px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: .7;
    transition: filter .2s, opacity .2s
}

.footer-logos img:hover {
    filter: none;
    opacity: 1
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0
}

.footer-payment-logos img {
    height: 24px;
    width: auto;
    filter: grayscale(1) brightness(2);
    opacity: .6
}

.footer-social-links {
    display: flex;
    gap: 10px
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.footer-social-link:hover {
    background: #0076f0
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

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

.footer-trust-logos img {
    height: 30px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: .65;
    transition: filter .2s, opacity .2s
}

.footer-trust-logos img:hover {
    filter: none;
    opacity: 1
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
    line-height: 1.6
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    margin-top: 10px;
    line-height: 1.7;
    font-weight: 300
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7)
}

.flag-au {
    width: 28px;
    height: auto;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, .2)
}

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

.casino-widget__panel {
    background: #3f1300;
    border: 1px solid rgba(255, 206, 10, .4);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0;
    width: 260px;
    max-height: 70vh;
    overflow-y: auto;
    transition: width .3s, padding .3s, opacity .3s;
    opacity: 1
}

.casino-widget__panel.collapsed {
    width: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden
}

.casino-widget__toggle {
    background: #3f1300;
    border: 1px solid rgba(255, 206, 10, .4);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 10px 8px;
    cursor: pointer;
    color: #ffce0a;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    writing-mode: vertical-rl;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px
}

.casino-widget__toggle:hover {
    background: rgba(63, 19, 0, .8)
}

.casino-widget__inner {
    padding: 16px
}

.casino-widget__title {
    font-size: 13px;
    font-weight: 700;
    color: #ffce0a;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 206, 10, .2)
}

.widget-casino-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.widget-casino-item:last-child {
    border-bottom: none
}

.widget-casino-rank {
    font-size: 18px;
    font-weight: 700;
    color: #ffce0a;
    flex-shrink: 0;
    width: 22px
}

.widget-casino-info {
    flex: 1;
    min-width: 0
}

.widget-casino-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.widget-casino-bonus {
    font-size: 12px;
    color: #4dff91;
    font-weight: 500
}

.widget-casino-btn {
    background: #ffce0a;
    color: #3f1300;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: background .2s
}

.widget-casino-btn:hover {
    background: #ffd93d
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #ffce0a
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: #ffce0a
}

.text-gold {
    color: #ffce0a
}

.text-green {
    color: #4dff91
}

.text-muted {
    color: rgba(255, 255, 255, .55)
}

.mb-24 {
    margin-bottom: 24px
}

.mt-24 {
    margin-top: 24px
}

.tag {
    display: inline-block;
    background: rgba(255, 206, 10, .15);
    color: #ffce0a;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.tag--green {
    background: rgba(77, 255, 145, .12);
    color: #4dff91
}

.tag--blue {
    background: rgba(0, 118, 240, .2);
    color: #5cb3ff
}

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3f1300;
    border: 2px solid rgba(255, 206, 10, .4);
    color: #ffce0a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: all
}

.scroll-top-btn:hover {
    transform: scale(1.1)
}

.scroll-top-btn svg {
    width: 18px;
    height: 18px;
    fill: #ffce0a
}

.wp-block-separator {
    border: none;
    background: #ffce0a;
    height: 3px;
    width: 60px;
    margin: 0 auto
}

.elementor-section {
    position: relative
}

.woocommerce-notices-wrapper {
    display: none
}

.e-bkgrnd-rx92 {
    background: transparent
}

.wp-site-blocks {
    display: contents
}

.is-root-container {
    display: contents
}

.a4x9q {
    display: none;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    width: 0
}

.xt7b2-hidden-track {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.k9w3m-widget {
    display: none
}

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

    .strategies-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .hero-demo {
        width: 380px
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #3f1300;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 4px;
        z-index: 1050;
        overflow-y: auto
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        font-size: 18px;
        padding: 12px 8px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    .burger {
        display: flex
    }

    .mobile-ctas {
        display: flex
    }

    .hero-content {
        flex-direction: column;
        padding: 40px 16px
    }

    .hero-demo {
        width: 100%
    }

    .hero-stats {
        justify-content: center
    }

    .screenshot-item {
        flex: 0 0 75vw
    }

    .bonus-slider .bonus-card {
        flex: 0 0 80vw
    }

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

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

    .casino-widget__panel {
        width: 220px
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-meta {
        justify-content: center
    }

    .author-socials {
        justify-content: center
    }

    .review-content {
        padding: 20px
    }

    .section {
        padding: 40px 0
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 15px
    }

    .bonus-card {
        flex: 0 0 85vw
    }

    .screenshot-item {
        flex: 0 0 85vw
    }

    .casino-widget {
        display: none
    }
}

@media (min-width: 769px) {
    .desktop-hide-ctas {
        display: flex
    }

    .header-actions .btn {
        display: inline-flex
    }
}

/* =========================================
   NEW CLEOPATRA HEADER
   ========================================= */

.cleo-head-x7 {
    position: sticky;
    top: 0;
    z-index: 5000;
    width: 100%;
    background: #3f1300;
    border-bottom: 1px solid rgba(255, 206, 10, 0.24);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.cleo-head-x7__inner {
    width: 100%;
    max-width: 1200px;
    min-height: 68px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.cleo-head-x7__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.cleo-head-x7__logo img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 165px;
    object-fit: contain;
}

.cleo-nav-x7 {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.cleo-nav-x7__top {
    display: none;
}

.cleo-nav-x7__links {
    display: flex;
    align-items: center;
    gap: 3px;
}

.cleo-nav-x7__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.cleo-nav-x7__link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}

.cleo-nav-x7__link:hover,
.cleo-nav-x7__link:focus-visible {
    color: #ffce0a;
    background: rgba(255, 255, 255, 0.09);
    outline: none;
}

.cleo-nav-x7__actions {
    display: none;
}

.cleo-head-x7__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.cleo-head-x7__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 16px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.cleo-head-x7__button svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.cleo-head-x7__button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.cleo-head-x7__button--play {
    background: #16873c;
    box-shadow: 0 4px 12px rgba(22, 135, 60, 0.24);
}

.cleo-head-x7__button--play:hover {
    background: #20a14b;
    box-shadow: 0 5px 16px rgba(22, 135, 60, 0.4);
}

.cleo-head-x7__button--bonus {
    background: #d2a400;
    color: #3f1300;
    box-shadow: 0 4px 12px rgba(255, 206, 10, 0.2);
}

.cleo-head-x7__button--bonus:hover {
    background: #ffce0a;
    color: #3f1300;
    box-shadow: 0 5px 16px rgba(255, 206, 10, 0.35);
}

.cleo-burger-x7 {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 5003;
}

.cleo-burger-x7 span {
    display: block;
    width: 23px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.25s ease,
    opacity 0.2s ease;
}

.cleo-burger-x7.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cleo-burger-x7.is-open span:nth-child(2) {
    opacity: 0;
}

.cleo-burger-x7.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.cleo-overlay-x7 {
    display: none;
}

/* Tablet */

@media (max-width: 1024px) {
    .cleo-head-x7__inner {
        gap: 10px;
    }

    .cleo-nav-x7__link {
        padding: 8px 8px;
        font-size: 13px;
    }

    .cleo-nav-x7__link svg {
        display: none;
    }

    .cleo-head-x7__button {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .cleo-head-x7__inner {
        min-height: 62px;
        padding: 8px 14px;
        flex-wrap: nowrap;
    }

    .cleo-head-x7__logo img {
        height: 42px;
        max-width: 145px;
    }

    .cleo-head-x7__actions {
        margin-left: auto;
    }

    .cleo-head-x7__actions .cleo-head-x7__button {
        min-height: 38px;
        padding: 8px 12px;
    }

    .cleo-head-x7__actions .cleo-head-x7__button span {
        display: none;
    }

    .cleo-head-x7__actions .cleo-head-x7__button svg {
        width: 18px;
        height: 18px;
    }

    .cleo-burger-x7 {
        display: flex;
        margin-left: 2px;
    }

    .cleo-nav-x7 {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 5002;
        width: min(330px, 88vw);
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #27100a;
        border-left: 1px solid rgba(255, 206, 10, 0.2);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.55);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.3s ease,
        visibility 0.3s ease;
    }

    .cleo-nav-x7.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .cleo-nav-x7__top {
        min-height: 70px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        background: #3f1300;
    }

    .cleo-nav-x7__title {
        color: #ffce0a;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .cleo-nav-x7__close {
        width: 40px;
        height: 40px;
        padding: 0;
        position: relative;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        cursor: pointer;
    }

    .cleo-nav-x7__close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 10px;
    }

    .cleo-nav-x7__close span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .cleo-nav-x7__close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .cleo-nav-x7__links {
        width: 100%;
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .cleo-nav-x7__link {
        width: 100%;
        min-height: 52px;
        padding: 12px 14px;
        display: flex;
        font-size: 16px;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .cleo-nav-x7__link svg {
        display: block;
        width: 19px;
        height: 19px;
        color: #ffce0a;
    }

    .cleo-nav-x7__link:active {
        background: rgba(255, 206, 10, 0.12);
    }

    .cleo-nav-x7__actions {
        width: 100%;
        padding: 16px 18px 24px;
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cleo-nav-x7__actions .cleo-head-x7__button {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
    }

    .cleo-overlay-x7 {
        position: fixed;
        inset: 0;
        z-index: 5001;
        width: 100%;
        height: 100%;
        padding: 0;
        display: block;
        background: rgba(0, 0, 0, 0.7);
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        cursor: default;
        transition: opacity 0.3s ease,
        visibility 0.3s ease;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .cleo-overlay-x7.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.cleo-menu-lock {
        overflow: hidden;
        touch-action: none;
    }

    body.cleo-menu-lock .sticky-widget,
    body.cleo-menu-lock .casino-widget,
    body.cleo-menu-lock .scroll-top-btn {
        visibility: hidden;
        pointer-events: none;
    }
}

/* Small phones */

@media (max-width: 420px) {
    .cleo-head-x7__inner {
        padding-left: 10px;
        padding-right: 10px;
        gap: 6px;
    }

    .cleo-head-x7__logo img {
        height: 38px;
        max-width: 125px;
    }

    .cleo-head-x7__actions {
        gap: 5px;
    }

    .cleo-head-x7__actions .cleo-head-x7__button {
        width: 36px;
        min-width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
    }

    .cleo-burger-x7 {
        width: 40px;
        height: 40px;
    }

    .cleo-nav-x7 {
        width: min(310px, 92vw);
    }
}