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

:root {
    --clr-bg: #004534;
    --clr-header: #01281D;
    --clr-btn-primary: #F6EBB5;
    --clr-btn-text: #01281D;
    --clr-text: #e8f5e9;
    --clr-text-muted: #a5d6a7;
    --clr-accent: #F6EBB5;
    --clr-gold: #e8c84a;
    --clr-border: rgba(246, 235, 181, 0.25);
    --clr-card: rgba(1, 40, 29, 0.75);
    --clr-card-hover: rgba(1, 40, 29, 0.92);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --font: 'Roboto', sans-serif;
}

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

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

body {
    font-family: var(--font);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: #fff;
}

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

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

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

.container--wide {
    max-width: 1360px;
}

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

.section-gap {
    margin: 36px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== HEADER ==================== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(246, 235, 181, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
    padding: 10px 0;
}

.header-logo img {
    height: 46px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.nav-link svg {
    flex-shrink: 0;
}

.nav-link:hover {
    background: rgba(246, 235, 181, 0.1);
    color: var(--clr-accent);
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
    animation: pulse-green 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s;
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

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

.btn--primary {
    background: var(--clr-btn-primary);
    color: var(--clr-btn-text);
    box-shadow: 0 3px 18px rgba(246, 235, 181, 0.38);
}

.btn--primary:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 28px rgba(246, 235, 181, 0.55);
    transform: translateY(-1px);
    color: var(--clr-btn-text);
}

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

.btn--secondary:hover {
    background: rgba(246, 235, 181, 0.1);
    color: var(--clr-accent);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.83rem;
    border-radius: var(--radius-sm);
}

.btn--md {
    padding: 10px 22px;
    font-size: 0.92rem;
}

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

.btn--xl {
    padding: 17px 42px;
    font-size: 1.15rem;
}

.btn--ghost {
    background: rgba(246, 235, 181, 0.08);
    color: var(--clr-accent);
    border: 1px solid rgba(246, 235, 181, 0.25);
}

.btn--ghost:hover {
    background: rgba(246, 235, 181, 0.18);
    color: var(--clr-accent);
}

/* ==================== BURGER ==================== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger:hover {
    background: rgba(246, 235, 181, 0.1);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-accent);
    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);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-r.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.42);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.07);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 40, 29, 0.82) 0%, rgba(0, 69, 52, 0.55) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 235, 181, 0.15);
    border: 1px solid rgba(246, 235, 181, 0.35);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

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

.hero-desc {
    font-size: 1.05rem;
    color: rgba(232, 245, 233, 0.88);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(232, 245, 233, 0.7);
    margin-top: 3px;
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs-wrap {
    background: rgba(1, 40, 29, 0.55);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
}

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

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li::after {
    content: '/';
    opacity: 0.45;
}

.breadcrumbs li:last-child::after {
    display: none;
}

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

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

.breadcrumbs .current {
    color: var(--clr-accent);
    font-weight: 500;
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.4em;
    background: var(--clr-accent);
    border-radius: 3px;
    flex-shrink: 0;
}

/* ==================== BLOCK ==================== */
.block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.block:hover {
    border-color: rgba(246, 235, 181, 0.4);
    box-shadow: 0 6px 36px rgba(0, 0, 0, 0.28);
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.data-table th {
    background: rgba(1, 40, 29, 0.9);
    color: var(--clr-accent);
    font-weight: 700;
    text-align: left;
    padding: 13px 18px;
    border-bottom: 2px solid var(--clr-border);
    white-space: nowrap;
}

.data-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(246, 235, 181, 0.1);
    color: var(--clr-text);
    vertical-align: middle;
}

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

.data-table tr:hover td {
    background: rgba(246, 235, 181, 0.04);
}

.param-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.param-icon svg {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(246, 235, 181, 0.12);
    color: var(--clr-accent);
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    margin: 2px;
}

/* ==================== MIRRORS BLOCK ==================== */
.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.mirror-datetime {
    background: rgba(246, 235, 181, 0.1);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--clr-accent);
    font-family: monospace;
    letter-spacing: 0.04em;
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #4caf50;
    font-weight: 600;
}

.mirror-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    display: block;
}

/* ==================== APP BLOCK ==================== */
.app-info-grid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-info-table {
    flex: 1;
    min-width: 280px;
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    background: rgba(1, 40, 29, 0.8);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-size: 0.88rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.download-btn:hover {
    background: rgba(246, 235, 181, 0.12);
    border-color: var(--clr-accent);
    transform: translateY(-2px);
    color: var(--clr-accent);
}

.download-btn svg {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.download-btn-label {
    font-size: 0.7rem;
    display: block;
    opacity: 0.7;
}

.download-btn-name {
    font-weight: 700;
    display: block;
}

/* ==================== BONUSES ==================== */
.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    flex: 1;
    min-width: 260px;
    background: linear-gradient(135deg, rgba(1, 40, 29, 0.95), rgba(0, 69, 52, 0.7));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 235, 181, 0.12), transparent 70%);
    pointer-events: none;
}

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

.bonus-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.bonus-tag {
    display: inline-block;
    background: rgba(246, 235, 181, 0.15);
    color: var(--clr-accent);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.bonus-amount {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1.1;
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.bonus-terms {
    font-size: 0.72rem;
    color: rgba(165, 214, 167, 0.55);
    margin-top: 10px;
}

/* ==================== SLOT GAME ==================== */
.slot-game {
    text-align: center;
    padding: 40px 28px;
}

.slot-machine {
    display: inline-flex;
    gap: 12px;
    background: rgba(1, 40, 29, 0.9);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 24px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(246, 235, 181, 0.1);
}

.slot-reel {
    width: 80px;
    height: 100px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(246, 235, 181, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.4);
}

.reel-inner {
    transition: transform 0.6s cubic-bezier(.17, .67, .41, 1.27);
    line-height: 1;
}

.slot-reel.spinning .reel-inner {
    animation: spin-reel 0.6s linear infinite;
}

@keyframes spin-reel {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-200px);
    }
}

.slot-result {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
    animation: fadeIn 0.4s ease;
}

.slot-win-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-shadow: 0 0 20px rgba(246, 235, 181, 0.6);
}

.slot-lose-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
}

.slot-lights {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.slot-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--clr-accent);
    opacity: 0.3;
}

.slot-light.active {
    opacity: 1;
    animation: blink 0.5s alternate infinite;
}

@keyframes blink {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
        box-shadow: 0 0 10px var(--clr-accent);
    }
}

/* ==================== REVIEW CONTENT ==================== */
.review-block .text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 24px 0 10px;
}

.review-block .text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c8e6c9;
    margin: 18px 0 8px;
}

.review-block .text p {
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.8;
}

.review-block .text ul, .review-block .text ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.review-block .text li {
    margin-bottom: 6px;
    color: var(--clr-text);
    line-height: 1.7;
}

.review-block .text a {
    color: var(--clr-accent);
    text-decoration: underline;
}

.review-block .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.review-block .text th {
    background: rgba(1, 40, 29, 0.8);
    color: var(--clr-accent);
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

.review-block .text td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(246, 235, 181, 0.1);
}

.review-block .text strong {
    color: #fff;
}

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

.review-block .text blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 18px;
    margin: 16px 0;
    background: rgba(246, 235, 181, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

/* ==================== AUTHOR ==================== */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(1, 40, 29, 0.6);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-top: 28px;
}

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

.author-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.8rem;
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

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

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

.author-links a {
    font-size: 0.78rem;
    color: var(--clr-accent);
    text-decoration: underline;
}

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

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

.faq-item.open {
    border-color: rgba(246, 235, 181, 0.4);
}

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

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

.faq-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--clr-accent);
    transition: transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(.4, 0, .2, 1);
}

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

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
    padding: 48px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 28px;
}

.footer-brand {
    flex: 0 0 auto;
    max-width: 240px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer-col {
    flex: 1;
    min-width: 140px;
}

.footer-col h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

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

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 235, 181, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px 13px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.footer-logo-badge svg {
    color: var(--clr-accent);
}

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

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(165, 214, 167, 0.45);
    line-height: 1.65;
    margin-top: 20px;
    border-top: 1px solid rgba(246, 235, 181, 0.08);
    padding-top: 18px;
}

.copyright {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

/* ==================== STICKY WIDGET ==================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #01281D 0%, #004534 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
    transform: translateY(0);
    transition: transform var(--transition);
}

.sticky-widget.hidden {
    transform: translateY(100%);
}

.widget-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.widget-bonus {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.widget-bonus span {
    color: var(--clr-accent);
}

.widget-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(246, 235, 181, 0.1);
    border: 1px dashed rgba(246, 235, 181, 0.4);
    border-radius: var(--radius-sm);
    padding: 5px 14px;
}

.promo-label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

.promo-code {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 0.08em;
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.widget-close:hover {
    color: var(--clr-accent);
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.logo-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(246, 235, 181, 0.12);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.logo-pill:hover {
    background: rgba(246, 235, 181, 0.1);
    color: var(--clr-accent);
}

.content-layout {
    padding: 40px 0 80px;
    flex: 1;
}

/* ====================  ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

@media (max-width: 800px) {
    .bonuses-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 12px;
    }

    .bonus-card {
        min-width: 82vw;
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

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

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-inner {
        flex-wrap: wrap;
        min-height: auto;
        padding: 12px 0;
        gap: 10px;
    }

    .header-logo {
        order: 1;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .burger {
        display: flex;
        order: 3;
    }

    .header-nav {
        order: 4;
        width: 100%;
        background: var(--clr-header);
        border-top: 1px solid var(--clr-border);
        padding: 10px 0;
        margin-top: 8px;
    }

    .nav-link {
        padding: 10px 14px;
    }

    .hero-content {
        padding: 60px 0 44px;
    }

    .hero {
        min-height: 400px;
    }

    .app-info-grid {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-stats {
        gap: 18px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px;
    }

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

    .sticky-widget {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        gap: 10px;
    }

    .widget-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .slot-machine {
        gap: 8px;
        padding: 20px;
    }

    .slot-reel {
        width: 66px;
        height: 84px;
        font-size: 2.2rem;
    }

    .block {
        padding: 18px 14px;
    }

    .bonus-card {
        min-width: 88vw;
        flex: 0 0 88vw;
    }
}

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

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
}

.has-small-font-size {
    font-size: 0.875em;
}

.has-normal-font-size {
    font-size: 1em;
}

.wp-caption {
    text-align: center;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

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

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px;
}

.wp-image-placeholder {
    background: #eee;
}

.entry-content {
    line-height: 1.7;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-logo-link {
    display: inline-block;
}

.elementor-section {
    position: relative;
}

.elementor-widget-wrap {
    display: flex;
    flex-direction: column;
}

.elementor-col-100 {
    width: 100%;
}

.et_pb_section {
    padding: 54px 0;
}

.et_pb_row {
    max-width: 1280px;
    margin: auto;
}
