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

:root {
    --clr-nav: #0e0405;
    --clr-nav-alt: #1a0608;
    --clr-btn-primary: #00be31;
    --clr-btn-secondary: #0184a7;
    --clr-bg: #bb3527;
    --clr-bg-alt: #a52f22;
    --clr-bg-dark: #8c2819;
    --clr-text: #fff8f0;
    --clr-text-muted: #f5d5cc;
    --clr-card: #0e0405cc;
    --clr-card-solid: #1a0608;
    --clr-border: #c8421333;
    --clr-gold: #f5c542;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--clr-text);
    background: var(--clr-bg);
    overflow-x: hidden;
}

a {
    color: var(--clr-btn-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-btn-primary);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text);
    text-wrap: balance;
}

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

h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 0.9rem;
    color: var(--clr-text);
}

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

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

.box {
    border-radius: var(--radius-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38);
}

.btn:active {
    transform: scale(0.97);
}

.btn-play {
    background: var(--clr-btn-primary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 190, 49, 0.35);
}

.btn-play:hover {
    background: #00d636;
    color: #fff;
}

.btn-info {
    background: var(--clr-btn-secondary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(1, 132, 167, 0.35);
}

.btn-info:hover {
    background: #019fc7;
    color: #fff;
}

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

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

.btn-gold {
    background: var(--clr-gold);
    color: #0e0405;
}

.btn-gold:hover {
    background: #ffd54f;
    color: #0e0405;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: var(--clr-btn-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.site-section {
    padding: 52px 0;
}

.site-section + .site-section {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.card {
    background: var(--clr-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}

/* ====== HEADER ====== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-nav);
    border-bottom: 2px solid rgba(187, 53, 39, 0.6);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--clr-btn-primary);
}

.header-nav a svg {
    width: 16px;
    height: 16px;
}

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

.lang-picker {
    position: relative;
}

.lang-picker-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 7px 11px;
    color: var(--clr-text);
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition);
}

.lang-picker-btn:hover {
    background: rgba(255, 255, 255, 0.13);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-nav-alt);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    min-width: 130px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 200;
}

.lang-picker.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    color: var(--clr-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-btn-primary);
}

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

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

.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);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--clr-nav);
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    gap: 6px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-btn-primary);
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

/* ====== HERO ====== */
.hero-section {
    background: linear-gradient(160deg, #0e0405 0%, #5a1610 40%, #bb3527 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/red-cas-b.jpg') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

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

.hero-text h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4.5vw, 3rem);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

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

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

.hero-tile {
    background: rgba(14, 4, 5, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    backdrop-filter: blur(6px);
    transition: border-color var(--transition);
}

.hero-tile:hover {
    border-color: var(--clr-btn-primary);
}

.hero-tile-icon {
    font-size: 1.7rem;
    line-height: 1;
    flex-shrink: 0;
}

.hero-tile-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-tile-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-gold);
}

/* ====== BREADCRUMBS ====== */
.breadcrumbs-bar {
    background: var(--clr-nav);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

.breadcrumbs a {
    color: var(--clr-btn-secondary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--clr-btn-primary);
}

.breadcrumbs-sep {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs span {
    color: var(--clr-text-muted);
}

/* ====== DEMO + DETAILS ====== */
.demo-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.demo-wrap {
    background: var(--clr-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.demo-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #000;
}

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

.demo-footer {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 10px;
    flex-wrap: wrap;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.96rem;
    background: var(--clr-card-solid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.game-details-table th,
.game-details-table td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    vertical-align: middle;
}

.game-details-table tr:last-child th,
.game-details-table tr:last-child td {
    border-bottom: none;
}

.game-details-table th {
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap;
    width: 42%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 7px;
}

.game-details-table td {
    color: var(--clr-gold);
    font-weight: 600;
}

.game-details-table tr {
    display: grid;
    grid-template-columns: 42% 1fr;
}

.game-details-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.gd-icon {
    width: 18px;
    height: 18px;
    fill: var(--clr-btn-secondary);
    flex-shrink: 0;
}

/* ====== WINNERS ====== */
.winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.winners-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--clr-card-solid);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.96rem;
}

.winners-table thead th {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--clr-gold);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.03em;
}

.winners-table tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text);
}

.winners-table tbody tr:last-child td {
    border-bottom: none;
}

.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.winner-rank {
    font-weight: 700;
    color: var(--clr-gold);
    width: 40px;
}

.winner-rank.top1 {
    color: #ffd700;
}

.winner-rank.top2 {
    color: #c0c0c0;
}

.winner-rank.top3 {
    color: #cd7f32;
}

.winner-name {
    font-weight: 600;
}

.winner-amount {
    font-weight: 700;
    color: var(--clr-btn-primary);
}

.winner-time {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
}

/* ====== SCREENSHOTS ====== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/9;
}

.screenshot-item:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
}

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

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.screenshots-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.screenshots-slider-track .screenshot-item {
    flex: 0 0 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 4, 5, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--clr-btn-secondary);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

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

/* ====== VIDEO ====== */
.video-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.bonus-card {
    background: var(--clr-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-secondary), var(--clr-btn-primary));
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 190, 49, 0.3);
}

.bonus-casino-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.bonus-amount {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--clr-btn-primary);
    line-height: 1.1;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    flex-grow: 1;
}

.bonus-terms {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.bonus-rating {
    display: flex;
    gap: 3px;
}

.bonus-rating span {
    color: var(--clr-gold);
    font-size: 0.9rem;
}

.bonuses-slider {
    display: none;
    position: relative;
    overflow: hidden;
}

.bonuses-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0;
}

.bonuses-slider-track .bonus-card {
    flex: 0 0 100%;
}

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

.strategy-card {
    background: var(--clr-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.strategy-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

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

.strategy-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.strategy-desc {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    flex-grow: 1;
    line-height: 1.5;
}

/* ====== CONTENT BLOCK ====== */
.content-block {
    background: rgba(14, 4, 5, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
    box-shadow: var(--shadow);
}

.content-block h2 {
    margin-top: 1.6rem;
    margin-bottom: 0.7rem;
    color: var(--clr-gold);
    font-size: 1.4rem;
}

.content-block h3 {
    margin-top: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--clr-text);
    font-size: 1.15rem;
}

.content-block h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.content-block p {
    margin-bottom: 0.9rem;
    color: var(--clr-text);
    line-height: 1.65;
}

.content-block a {
    color: var(--clr-btn-secondary);
}

.content-block a:hover {
    color: var(--clr-btn-primary);
}

.content-block ul, .content-block ol {
    padding-left: 1.4em;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.content-block li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.content-block strong {
    color: var(--clr-gold);
}

.content-block em {
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 0.95rem;
    text-align: left;
}

.content-block table th {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 14px;
    color: var(--clr-gold);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--clr-text);
}

.content-block table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.content-block blockquote {
    border-left: 3px solid var(--clr-btn-secondary);
    padding: 12px 18px;
    margin: 1rem 0;
    background: rgba(1, 132, 167, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.content-block hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* ====== AUTHOR BOX ====== */
.author-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(1, 132, 167, 0.1);
    border: 1px solid rgba(1, 132, 167, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 28px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--clr-btn-secondary);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--clr-nav);
}

.author-info h4 {
    color: var(--clr-gold);
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.author-info a {
    color: var(--clr-btn-secondary);
    font-size: 0.85rem;
}

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

.faq-item {
    background: var(--clr-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(0, 190, 49, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-text);
    user-select: none;
    gap: 12px;
}

.faq-question:hover {
    color: var(--clr-btn-primary);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    fill: var(--clr-btn-secondary);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    color: var(--clr-text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding-bottom: 16px;
}

/* ====== FOOTER ====== */
.site-footer {
    background: var(--clr-nav);
    border-top: 2px solid rgba(187, 53, 39, 0.4);
    padding: 48px 0 24px;
    margin-top: auto;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--clr-btn-primary);
}

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

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: background var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-btn-secondary);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

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

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--clr-btn-secondary);
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 14px;
}

/* ====== STICKY WIDGET ====== */
.casino-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9990;
    width: 260px;
    background: var(--clr-nav);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: transform var(--transition), opacity var(--transition);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    padding: 11px 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.widget-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-gold);
}

.widget-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    transition: color var(--transition);
}

.widget-toggle:hover {
    color: #fff;
}

.widget-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-body.collapsed {
    display: none;
}

.widget-casino {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    gap: 8px;
}

.widget-casino-rank {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-gold);
    width: 18px;
    flex-shrink: 0;
}

.widget-casino-name {
    font-size: 0.88rem;
    font-weight: 700;
    flex-grow: 1;
    color: var(--clr-text);
}

.widget-casino-bonus {
    font-size: 0.78rem;
    color: var(--clr-btn-primary);
    font-weight: 600;
}

.widget-casino-btn {
    background: var(--clr-btn-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.widget-casino-btn:hover {
    background: #00d636;
    transform: scale(1.04);
    color: #fff;
}

/* ====== WP DECOY (hidden) ====== */
.wp-compat-layer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.elementor-hidden {
    display: none !important;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-fadeup {
    animation: fadeInUp 0.55s ease both;
}

.animate-fadein {
    animation: fadeIn 0.6s ease both;
}

.btn-play {
    animation: pulse-green 2.4s infinite;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ====== SECTION DIVIDERS ====== */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: -1px 0;
}

.wave-divider svg {
    width: 100%;
    height: 40px;
    display: block;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 180px 1fr 1fr;
    }

    .demo-details-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-inner {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider {
        display: block;
    }

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

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

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .casino-widget {
        width: calc(100% - 28px);
        right: 14px;
        bottom: 14px;
    }

    .content-block {
        padding: 22px 18px;
    }
}

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

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

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

    .header-actions .lang-picker {
        display: none;
    }
}

/* ====== WP FAKES ====== */
.wp-block-spacer {
    display: block;
    height: 0;
    clear: both;
}

.wp-block-paragraph {
    display: block;
}

.entry-content::before {
    content: '';
    display: block;
    clear: both;
}

.site-header .wp-block-navigation-item {
    display: none;
}

.wpcf7-dummy {
    position: absolute;
    left: -9999px;
}
