:root {
    --clr-header: #CB1213;
    --clr-btn-gold: #E7C800;
    --clr-btn-green: #6FF800;
    --clr-bg: #650664;
    --clr-bg-dark: #4a0448;
    --clr-bg-card: #7a0878;
    --clr-bg-card2: #5c0559;
    --clr-text: #fff;
    --clr-text-muted: #e8b8e8;
    --clr-accent: #E7C800;
    --clr-link: #E7C800;
    --clr-border: rgba(231, 200, 0, 0.25);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    --transition: 0.25s ease;
    --font-primary: 'Poppins', 'Roboto', sans-serif;
    --font-heading: 'Montserrat', 'Oswald', sans-serif;
    --space: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--clr-link);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--space) * 2);
}

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

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: calc(var(--space) * 2);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: calc(var(--space) * 2);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: var(--space);
}

p {
    margin-bottom: calc(var(--space) * 1.5);
    color: var(--clr-text);
}

ul, ol {
    padding-left: calc(var(--space) * 3);
    margin-bottom: calc(var(--space) * 1.5);
}

li {
    margin-bottom: calc(var(--space) * 0.5);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-decoration: none !important;
}

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

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

.btn--gold {
    background: var(--clr-btn-gold);
    color: #1a1a00;
}

.btn--green {
    background: var(--clr-btn-green);
    color: #0a2200;
}

.btn--red {
    background: var(--clr-header);
    color: #fff;
}

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

.btn--lg {
    padding: 14px 34px;
    font-size: 1.05rem;
}

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

.btn--pulse {
    animation: btnPulse 2.2s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(111, 248, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(111, 248, 0, 0);
    }
}

.section-title {
    text-align: center;
    font-size: clamp(1.3rem, 3.5vw, 2.1rem);
    font-family: var(--font-heading);
    color: var(--clr-accent);
    margin-bottom: calc(var(--space) * 4);
    position: relative;
}

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

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--space) * 2);
    padding: 12px 0;
    flex-wrap: wrap;
}

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

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

.header-logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--space) * 3);
    flex: 1;
    justify-content: center;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--clr-btn-gold);
}

.header-nav a svg {
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: calc(var(--space) * 1.5);
    flex-shrink: 0;
}

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #fff;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-btn-green);
    border-radius: 50%;
    animation: blink 1.4s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 5px 10px;
    color: #fff;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background var(--transition);
}

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

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 130px;
    z-index: 200;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #333;
    font-size: 0.85rem;
    transition: background var(--transition);
}

.lang-menu a:hover {
    background: #f5f5f5;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 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);
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4a0448 0%, #650664 40%, #8b0a89 70%, #cb1213 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-hot.jpg') center/cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(74, 4, 72, 0.92) 0%, rgba(101, 6, 100, 0.6) 60%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--space) * 8) 0;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(231, 200, 0, 0.18);
    border: 1px solid var(--clr-btn-gold);
    color: var(--clr-btn-gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: calc(var(--space) * 2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: calc(var(--space) * 2);
}

.hero h1 span {
    color: var(--clr-btn-gold);
}

.hero-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: calc(var(--space) * 4);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: calc(var(--space) * 2);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: calc(var(--space) * 4);
    margin-top: calc(var(--space) * 5);
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-btn-gold);
    font-family: var(--font-heading);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section {
    padding: calc(var(--space) * 10) 0;
}

.section--alt {
    background: rgba(0, 0, 0, 0.15);
}

.pros-cons-grid {
    display: flex;
    gap: calc(var(--space) * 3);
}

.pros-cons-col {
    flex: 1;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 4);
    border: 1px solid var(--clr-border);
}

.pros-cons-col--pros {
    border-top: 3px solid #6FF800;
}

.pros-cons-col--cons {
    border-top: 3px solid #ff4444;
}

.pros-cons-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: calc(var(--space) * 3);
    font-weight: 700;
}

.pros-cons-heading--pros {
    color: #6FF800;
}

.pros-cons-heading--cons {
    color: #ff6666;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-cons-list .icon-check {
    color: #6FF800;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-cons-list .icon-cross {
    color: #ff6666;
    flex-shrink: 0;
    margin-top: 2px;
}

.jackpot-grid {
    display: flex;
    gap: calc(var(--space) * 3);
}

.jackpot-card {
    flex: 1;
    border-radius: var(--radius);
    padding: calc(var(--space) * 4);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.jackpot-card--1 {
    background: linear-gradient(135deg, #5c0559 0%, #8b0a89 100%);
    border-color: #E7C800;
}

.jackpot-card--2 {
    background: linear-gradient(135deg, #4a0448 0%, #7a0878 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.jackpot-card--3 {
    background: linear-gradient(135deg, #3d0339 0%, #6a0568 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

.jackpot-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}

.jackpot-card--1 .jackpot-glow {
    background: radial-gradient(circle, #E7C800, transparent);
}

.jackpot-card--2 .jackpot-glow {
    background: radial-gradient(circle, #c0c0c0, transparent);
}

.jackpot-card--3 .jackpot-glow {
    background: radial-gradient(circle, #cd7f32, transparent);
}

.jackpot-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.jackpot-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: calc(var(--space) * 1.5);
}

.jackpot-card--1 .jackpot-name {
    color: #E7C800;
}

.jackpot-card--2 .jackpot-name {
    color: #e8e8e8;
}

.jackpot-card--3 .jackpot-name {
    color: #e8a07a;
}

.jackpot-amount {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: calc(var(--space) * 2);
    transition: all 0.4s ease;
}

.jackpot-card--1 .jackpot-amount {
    color: #E7C800;
    text-shadow: 0 0 20px rgba(231, 200, 0, 0.5);
}

.jackpot-players {
    margin-top: calc(var(--space) * 2);
}

.jackpot-players-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 0.78rem;
}

.jackpot-player-nick {
    color: #fff;
    font-weight: 600;
}

.jackpot-player-sum {
    color: var(--clr-btn-gold);
    font-weight: 700;
}

.screenshots-grid {
    display: flex;
    gap: calc(var(--space) * 2.5);
}

.screenshot-item {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

.screenshot-caption {
    background: var(--clr-bg-card);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    text-align: center;
}

.bonuses-grid {
    display: flex;
    gap: calc(var(--space) * 3);
}

.bonus-card {
    flex: 1;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 3.5);
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.bonus-casino-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: calc(var(--space) * 2);
}

.bonus-casino-logo .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--clr-header), #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.bonus-casino-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.bonus-casino-rating {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.bonus-casino-rating svg {
    color: var(--clr-btn-gold);
}

.bonus-highlight {
    background: linear-gradient(90deg, rgba(231, 200, 0, 0.12), rgba(111, 248, 0, 0.08));
    border: 1px solid rgba(231, 200, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin: calc(var(--space) * 2) 0;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-btn-gold);
    font-family: var(--font-heading);
}

.bonus-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 calc(var(--space) * 2);
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-features li::before {
    content: '✓';
    color: #6FF800;
    font-weight: 700;
    flex-shrink: 0;
}

.bonus-cta {
    margin-top: auto;
}

.demo-section-inner {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 4);
    border: 1px solid var(--clr-border);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(var(--space) * 3);
    flex-wrap: wrap;
    gap: calc(var(--space) * 2);
}

.demo-header h2 {
    margin-bottom: 0;
    color: var(--clr-accent);
}

.demo-frame-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    background: #000;
    border: 2px solid rgba(231, 200, 0, 0.3);
}

.demo-frame-placeholder {
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a001a, #3d0339);
    gap: calc(var(--space) * 2);
}

.demo-frame-placeholder .game-icon {
    font-size: 4rem;
}

.demo-frame-placeholder p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-align: center;
}

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

.demo-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--space) * 2);
    margin-top: calc(var(--space) * 3);
    flex-wrap: wrap;
}

.reviews-grid {
    display: flex;
    gap: calc(var(--space) * 3);
    margin-bottom: calc(var(--space) * 6);
}

.review-card {
    flex: 1;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 3.5);
    border: 1px solid var(--clr-border);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(231, 200, 0, 0.12);
    font-family: serif;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: calc(var(--space) * 2);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 3px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    color: var(--clr-btn-gold);
}

.review-date {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-left: auto;
}

.review-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--clr-text-muted);
}

.review-form-wrapper {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 4);
    border: 1px solid var(--clr-border);
    max-width: 600px;
    margin: 0 auto;
}

.review-form-wrapper h3 {
    color: var(--clr-accent);
    margin-bottom: calc(var(--space) * 3);
    text-align: center;
}

.form-group {
    margin-bottom: calc(var(--space) * 2.5);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(231, 200, 0, 0.25);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-btn-gold);
    box-shadow: 0 0 0 3px rgba(231, 200, 0, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

.form-success {
    display: none;
    background: rgba(111, 248, 0, 0.12);
    border: 1px solid rgba(111, 248, 0, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #6FF800;
    text-align: center;
    font-weight: 600;
    margin-top: calc(var(--space) * 2);
}

.form-success.visible {
    display: block;
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--space) * 3);
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 4);
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-btn-gold);
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 3px solid var(--clr-btn-gold);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.author-title {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--space) * 1.5);
}

.author-bio {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--clr-btn-gold);
    font-weight: 600;
}

.author-link:hover {
    opacity: 0.8;
}

.content-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: calc(var(--space) * 4);
    border: 1px solid var(--clr-border);
}

.content-block h2 {
    color: var(--clr-accent);
    font-size: 1.6rem;
    margin-bottom: calc(var(--space) * 2);
}

.content-block h3 {
    color: #f0c8f0;
    font-size: 1.2rem;
    margin-bottom: var(--space);
}

.content-block p {
    color: var(--clr-text-muted);
}

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

.content-block a:hover {
    text-decoration: underline;
}

.content-block ul, .content-block ol {
    color: var(--clr-text-muted);
}

.content-block li {
    margin-bottom: 6px;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.content-block table th {
    background: rgba(203, 18, 19, 0.3);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 1px solid rgba(231, 200, 0, 0.2);
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid rgba(231, 200, 0, 0.12);
    color: var(--clr-text-muted);
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    margin-bottom: calc(var(--space) * 1.5);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 16px;
    user-select: none;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question.open {
    color: var(--clr-btn-gold);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.25s ease;
    color: var(--clr-btn-gold);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.site-footer {
    background: var(--clr-header);
    padding: calc(var(--space) * 8) 0 calc(var(--space) * 3);
    margin-top: auto;
}

.footer-top {
    display: flex;
    gap: calc(var(--space) * 5);
    flex-wrap: wrap;
    padding-bottom: calc(var(--space) * 5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: calc(var(--space) * 4);
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: calc(var(--space) * 2);
}

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

.footer-brand-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.footer-nav-group {
    min-width: 150px;
}

.footer-nav-group h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-btn-gold);
    margin-bottom: calc(var(--space) * 2);
    font-family: var(--font-heading);
}

.footer-nav-group a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-nav-group a:hover {
    color: #fff;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: calc(var(--space) * 2);
    flex-wrap: wrap;
    margin-bottom: calc(var(--space) * 3);
}

.footer-payments-title, .footer-trust-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: calc(var(--space) * 2);
    flex-wrap: wrap;
    margin-bottom: calc(var(--space) * 3);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: calc(var(--space) * 3);
}

.footer-provider span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: calc(var(--space) * 2);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    max-width: 700px;
    line-height: 1.6;
}

.footer-age {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.breadcrumb a {
    color: var(--clr-btn-gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.slider-container {
    position: relative;
    overflow: hidden;
}

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: calc(var(--space) * 2.5);
}

.slider-btn {
    background: var(--clr-bg-card);
    border: 1.5px solid var(--clr-border);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    font-size: 1rem;
}

.slider-btn:hover {
    background: var(--clr-btn-gold);
    border-color: var(--clr-btn-gold);
    color: #000;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

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

.slider-dot.active {
    background: var(--clr-btn-gold);
    width: 22px;
    border-radius: 4px;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.game-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.game-info-table th, .game-info-table td {
    padding: 11px 16px;
    text-align: left;
    border: 1px solid rgba(231, 200, 0, 0.15);
}

.game-info-table th {
    background: rgba(203, 18, 19, 0.25);
    color: var(--clr-btn-gold);
    font-weight: 700;
    white-space: nowrap;
}

.game-info-table td {
    color: var(--clr-text-muted);
}

.game-info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.wp-hidden-meta {
    display: none !important;
    visibility: hidden;
}

.elementor-widget-wrap {
    all: unset;
}

.wp-block-separator {
    display: none;
}

.d2f3a8 {
    display: none;
}

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

.badge-new {
    display: inline-block;
    background: var(--clr-btn-green);
    color: #0a2200;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 50px;
    text-transform: uppercase;
    vertical-align: middle;
}

.technical-content {
    padding: calc(var(--space) * 6) 0;
}

.technical-content h1 {
    color: var(--clr-accent);
}

.technical-content h2 {
    color: var(--clr-text);
    font-size: 1.3rem;
    margin-top: calc(var(--space) * 4);
}

.technical-content h3 {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-top: calc(var(--space) * 3);
}

.technical-content p, .technical-content li {
    color: var(--clr-text-muted);
}

.technical-content a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .pros-cons-grid {
        flex-direction: column;
    }

    .jackpot-grid {
        flex-direction: column;
    }

    .reviews-grid {
        flex-direction: column;
    }

    .bonuses-grid {
        flex-direction: column;
    }

    .footer-top {
        gap: calc(var(--space) * 3);
    }

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 69px;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space) * 3);
        gap: calc(var(--space) * 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        padding: 10px 0;
        width: 100%;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .burger {
        display: flex;
    }

    .screenshots-grid {
        flex-direction: column;
    }

    .lang-dropdown {
        display: none;
    }

    .online-count {
        display: none;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .hero {
        min-height: 420px;
    }

    .hero-content {
        padding: calc(var(--space) * 5) 0;
    }

    .hero-stats {
        gap: calc(var(--space) * 3);
    }
}

@media (max-width: 480px) {
    .btn--lg {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .section {
        padding: calc(var(--space) * 6) 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .section-title {
        margin-bottom: calc(var(--space) * 3);
    }
}

.qukfmdm {
    max-width: 980px;
    margin: 48px auto 56px;
    padding: 42px 38px;
    background: linear-gradient(180deg, rgba(122, 8, 120, .96), rgba(74, 4, 72, .96));
    border: 1px solid rgba(231, 200, 0, .35);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .38), inset 0 0 0 1px rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden
}

.qukfmdm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(231, 200, 0, .13), transparent 34%), radial-gradient(circle at bottom left, rgba(111, 248, 0, .08), transparent 30%);
    pointer-events: none
}

.qukfmdm > * {
    position: relative;
    z-index: 1
}

.qukfmdm h1 {
    font-size: clamp(30px, 4.6vw, 50px);
    line-height: 1.08;
    color: var(--clr-btn-gold);
    margin-bottom: 26px;
    text-transform: uppercase
}

.qukfmdm h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    color: #fff;
    margin: 42px 0 16px;
    padding-left: 18px;
    position: relative
}

.qukfmdm h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: .15em;
    width: 6px;
    height: .95em;
    border-radius: 20px;
    background: var(--clr-btn-gold);
    box-shadow: 0 0 18px rgba(231, 200, 0, .35)
}

.qukfmdm h3 {
    font-size: clamp(19px, 2.3vw, 25px);
    line-height: 1.25;
    color: var(--clr-btn-gold);
    margin: 30px 0 12px
}

.qukfmdm p {
    font-size: 16px;
    line-height: 1.86;
    color: rgba(255, 255, 255, .84);
    margin-bottom: 18px
}

.qukfmdm ul,
.qukfmdm ol {
    display: grid;
    gap: 12px;
    margin: 22px 0 28px;
    padding-left: 0;
    list-style: none
}

.qukfmdm li {
    position: relative;
    padding: 14px 16px 14px 48px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.68;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px
}

.qukfmdm ul li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 21px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--clr-btn-green);
    box-shadow: 0 0 0 5px rgba(111, 248, 0, .12)
}

.qukfmdm ol {
    counter-reset: qukfmdm-counter
}

.qukfmdm ol li {
    counter-increment: qukfmdm-counter
}

.qukfmdm ol li::before {
    content: counter(qukfmdm-counter);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--clr-btn-gold);
    color: #1a1a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800
}

.qukfmdm a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%
}

.qukfmdm a:hover {
    color: var(--clr-btn-green)
}

.qukfmdm strong {
    color: #fff
}

.qukfmdm img {
    max-width: 260px;
    margin: 26px auto;
    padding: 12px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25)
}

.qukfmdm table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(231, 200, 0, .24);
    background: rgba(0, 0, 0, .16)
}

.qukfmdm th,
.qukfmdm td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
    vertical-align: top;
    font-size: 15px
}

.qukfmdm th {
    color: var(--clr-btn-gold);
    background: rgba(203, 18, 19, .22);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em
}

.qukfmdm td {
    color: rgba(255, 255, 255, .84)
}

.qukfmdm tr:last-child th,
.qukfmdm tr:last-child td {
    border-bottom: 0
}

.qukfmdm blockquote {
    margin: 26px 0;
    padding: 18px 22px;
    color: rgba(255, 255, 255, .84);
    background: rgba(231, 200, 0, .07);
    border-left: 4px solid var(--clr-btn-gold);
    border-radius: 0 16px 16px 0;
    font-style: italic
}

@media (max-width: 768px) {
    .qukfmdm {
        max-width: calc(100% - 24px);
        margin: 32px auto 42px;
        padding: 30px 20px;
        border-radius: 18px
    }

    .qukfmdm h1 {
        font-size: 29px;
        margin-bottom: 22px
    }

    .qukfmdm h2 {
        font-size: 23px;
        margin: 34px 0 14px;
        padding-left: 15px
    }

    .qukfmdm h3 {
        font-size: 19px;
        margin: 24px 0 10px
    }

    .qukfmdm p {
        font-size: 15px;
        line-height: 1.76;
        margin-bottom: 16px
    }

    .qukfmdm li {
        font-size: 15px;
        line-height: 1.64;
        padding: 13px 14px 13px 42px
    }

    .qukfmdm ul li::before {
        left: 16px;
        top: 20px;
        width: 10px;
        height: 10px
    }

    .qukfmdm img {
        max-width: 220px;
        margin: 22px auto
    }

    .qukfmdm table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }
}

@media (max-width: 480px) {
    .qukfmdm {
        max-width: calc(100% - 14px);
        margin: 24px auto 34px;
        padding: 24px 14px;
        border-radius: 16px
    }

    .qukfmdm h1 {
        font-size: 24px
    }

    .qukfmdm h2 {
        font-size: 20px
    }

    .qukfmdm h3 {
        font-size: 18px
    }

    .qukfmdm p,
    .qukfmdm li {
        font-size: 14px
    }

    .qukfmdm li {
        padding: 12px 12px 12px 38px
    }

    .qukfmdm ol li::before {
        width: 22px;
        height: 22px;
        font-size: 11px
    }

    .qukfmdm th,
    .qukfmdm td {
        padding: 11px 12px;
        font-size: 13px
    }

    .qukfmdm blockquote {
        padding: 16px 18px;
        font-size: 14px
    }
}

.qukfmdm {
    max-width: 980px;
    margin: 48px auto 56px;
    padding: 42px 38px;
    background: linear-gradient(180deg, rgba(122, 8, 120, .96), rgba(74, 4, 72, .96));
    border: 1px solid rgba(231, 200, 0, .35);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .38), inset 0 0 0 1px rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden
}

.qukfmdm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(231, 200, 0, .13), transparent 34%), radial-gradient(circle at bottom left, rgba(111, 248, 0, .08), transparent 30%);
    pointer-events: none
}

.qukfmdm > * {
    position: relative;
    z-index: 1
}

.qukfmdm h1 {
    font-size: clamp(30px, 4.6vw, 50px);
    line-height: 1.08;
    color: var(--clr-btn-gold);
    margin-bottom: 26px;
    text-transform: uppercase
}

.qukfmdm h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    color: #fff;
    margin: 42px 0 16px;
    padding-left: 18px;
    position: relative
}

.qukfmdm h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: .15em;
    width: 6px;
    height: .95em;
    border-radius: 20px;
    background: var(--clr-btn-gold);
    box-shadow: 0 0 18px rgba(231, 200, 0, .35)
}

.qukfmdm h3 {
    font-size: clamp(19px, 2.3vw, 25px);
    line-height: 1.25;
    color: var(--clr-btn-gold);
    margin: 30px 0 12px
}

.qukfmdm p {
    font-size: 16px;
    line-height: 1.86;
    color: rgba(255, 255, 255, .84);
    margin-bottom: 18px
}

.qukfmdm ul,
.qukfmdm ol {
    display: grid;
    gap: 12px;
    margin: 22px 0 28px;
    padding-left: 0;
    list-style: none
}

.qukfmdm li {
    position: relative;
    padding: 14px 16px 14px 48px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.68;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px
}

.qukfmdm ul li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 21px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--clr-btn-green);
    box-shadow: 0 0 0 5px rgba(111, 248, 0, .12)
}

.qukfmdm ol {
    counter-reset: qukfmdm-counter
}

.qukfmdm ol li {
    counter-increment: qukfmdm-counter
}

.qukfmdm ol li::before {
    content: counter(qukfmdm-counter);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--clr-btn-gold);
    color: #1a1a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800
}

.qukfmdm a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%
}

.qukfmdm a:hover {
    color: var(--clr-btn-green)
}

.qukfmdm strong {
    color: #fff
}

.qukfmdm img {
    max-width: 260px;
    margin: 26px auto;
    padding: 12px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25)
}

.qukfmdm table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(231, 200, 0, .24);
    background: rgba(0, 0, 0, .16)
}

.qukfmdm th,
.qukfmdm td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
    vertical-align: top;
    font-size: 15px
}

.qukfmdm th {
    color: var(--clr-btn-gold);
    background: rgba(203, 18, 19, .22);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em
}

.qukfmdm td {
    color: rgba(255, 255, 255, .84)
}

.qukfmdm tr:last-child th,
.qukfmdm tr:last-child td {
    border-bottom: 0
}

.qukfmdm blockquote {
    margin: 26px 0;
    padding: 18px 22px;
    color: rgba(255, 255, 255, .84);
    background: rgba(231, 200, 0, .07);
    border-left: 4px solid var(--clr-btn-gold);
    border-radius: 0 16px 16px 0;
    font-style: italic
}

@media (max-width: 768px) {
    .qukfmdm {
        max-width: calc(100% - 24px);
        margin: 32px auto 42px;
        padding: 30px 20px;
        border-radius: 18px
    }

    .qukfmdm h1 {
        font-size: 29px;
        margin-bottom: 22px
    }

    .qukfmdm h2 {
        font-size: 23px;
        margin: 34px 0 14px;
        padding-left: 15px
    }

    .qukfmdm h3 {
        font-size: 19px;
        margin: 24px 0 10px
    }

    .qukfmdm p {
        font-size: 15px;
        line-height: 1.76;
        margin-bottom: 16px
    }

    .qukfmdm li {
        font-size: 15px;
        line-height: 1.64;
        padding: 13px 14px 13px 42px
    }

    .qukfmdm ul li::before {
        left: 16px;
        top: 20px;
        width: 10px;
        height: 10px
    }

    .qukfmdm img {
        max-width: 220px;
        margin: 22px auto
    }

    .qukfmdm table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }
}

@media (max-width: 480px) {
    .qukfmdm {
        max-width: calc(100% - 14px);
        margin: 24px auto 34px;
        padding: 24px 14px;
        border-radius: 16px
    }

    .qukfmdm h1 {
        font-size: 24px
    }

    .qukfmdm h2 {
        font-size: 20px
    }

    .qukfmdm h3 {
        font-size: 18px
    }

    .qukfmdm p,
    .qukfmdm li {
        font-size: 14px
    }

    .qukfmdm li {
        padding: 12px 12px 12px 38px
    }

    .qukfmdm ol li::before {
        width: 22px;
        height: 22px;
        font-size: 11px
    }

    .qukfmdm th,
    .qukfmdm td {
        padding: 11px 12px;
        font-size: 13px
    }

    .qukfmdm blockquote {
        padding: 16px 18px;
        font-size: 14px
    }
}

#demo {
    background: linear-gradient(180deg, var(--clr-bg), var(--clr-bg-dark));
    padding: 64px 0
}

.game-demo-wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    border: 1px solid rgba(231, 200, 0, .32);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .38);
}

.game-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(203, 18, 19, .26);
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.game-demo-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-btn-gold);
    text-transform: uppercase
}

.game-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000
}

.game-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.game-demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.game-info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.game-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.3
}

.game-pill strong {
    color: var(--clr-btn-gold)
}

.btn--play {
    background: var(--clr-btn-gold);
    color: #1a1a00;
    border-radius: 999px;
    white-space: nowrap
}

.btn--play:hover {
    color: #1a1a00;
    background: var(--clr-btn-gold-hover)
}

@media (max-width: 768px) {
    #demo {
        padding: 42px 0
    }

    .game-demo-wrap {
        border-radius: 18px
    }

    .game-demo-header {
        flex-direction: column;
        align-items: stretch;
        padding: 16px
    }

    .game-demo-title {
        font-size: 18px;
        text-align: center
    }

    .game-demo-header .btn {
        width: 100%;
        justify-content: center
    }

    .game-frame-wrap {
        aspect-ratio: 4 / 3
    }

    .game-demo-footer {
        flex-direction: column;
        align-items: stretch;
        padding: 16px
    }

    .game-info-pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .game-pill {
        justify-content: center;
        text-align: center;
        font-size: 12px;
        padding: 8px 10px
    }

    .game-demo-footer .btn {
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 480px) {
    #demo {
        padding: 34px 0
    }

    .game-frame-wrap {
        aspect-ratio: 1 / 1
    }

    .game-info-pills {
        grid-template-columns: 1fr
    }

    .game-demo-title {
        font-size: 16px
    }

    .game-pill {
        font-size: 12px
    }
}