/* ==========================================================================
   Slottica Casino — Main Stylesheet v1.7
   ========================================================================== */

/* ---- Custom Properties ---- */
:root {
    --sl-blue: #5274FF;
    --sl-blue-dark: #3d5ce0;
    --sl-blue-light: #7090ff;
    --sl-green: #69D253;
    --sl-green-dark: #50b83c;
    --sl-white: #FFFFFF;
    --sl-bg: #F5F5F5;
    --sl-dark: #1a1a2e;
    --sl-dark2: #16213e;
    --sl-text: #2d2d4e;
    --sl-text-light: #5a5a7a;
    --sl-gold: #FFB300;
    --sl-border: #e0e0ef;
    --sl-shadow: 0 4px 24px rgba(82, 116, 255, .12);
    --sl-radius: 12px;
    --sl-radius-sm: 8px;
    --font-head: 'Montserrat', 'Arial', sans-serif;
    --font-body: 'Roboto', 'Arial', sans-serif;
    --transition: 0.25s ease;
}

/* ---- Reset / Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--sl-text);
    background: var(--sl-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--sl-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--sl-blue-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--sl-dark);
    line-height: 1.3;
}

/* Unused rules for layout uniqualization */
.x9f2k {
    scroll-padding-top: 72px;
}

.xw84p-unused-cls {
    display: none;
    opacity: 0;
}

.b7r3m-body::before {
    content: '';
    display: none;
}

.sl-unused-widget {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-sl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 700;
    border: none;
    border-radius: var(--sl-radius-sm);
    cursor: pointer;
    text-decoration: none !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-sl:focus-visible {
    outline: 3px solid var(--sl-blue-light);
    outline-offset: 2px;
}

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

.btn-sl--md {
    padding: 12px 24px;
    font-size: 15px;
}

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

.btn-sl--blue {
    background: var(--sl-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(82, 116, 255, .35);
}

.btn-sl--blue:hover {
    background: var(--sl-blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(82, 116, 255, .45);
}

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

.btn-sl--green {
    background: var(--sl-green);
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(105, 210, 83, .35);
}

.btn-sl--green:hover {
    background: var(--sl-green-dark);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(105, 210, 83, .45);
}

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

.btn-sl--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .7);
}

.btn-sl--outline:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header-outer-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--sl-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.site-header {
    padding: 0;
    background: var(--sl-white);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    min-height: 68px;
}

.header-logo {
    flex-shrink: 0;
    line-height: 0;
}

.logo-img {
    width: 50px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.logo-img--footer {
    width: 130px;
}

.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.header-nav__link {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--sl-text);
    border-radius: var(--sl-radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav__link:hover {
    background: rgba(82, 116, 255, .08);
    color: var(--sl-blue);
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sl-text-light);
    margin-right: 8px;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sl-green);
    box-shadow: 0 0 0 2px rgba(105, 210, 83, .3);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(105, 210, 83, .3);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(105, 210, 83, .1);
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sl-dark);
    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-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.mobile-nav-overlay.active {
    display: block;
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section-wrap {
    padding: 64px 0;
}

.section-wrap + .section-wrap {
    padding-top: 0;
}

.section-heading {
    margin-bottom: 36px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--sl-dark);
    margin-bottom: 8px;
}

.section-sub {
    font-size: 15px;
    color: var(--sl-text-light);
    margin: 0;
}

.hero-section {
    position: relative;
    min-height: 520px;
    background: url('/b-slottica.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(26, 26, 46, .92) 0%, rgba(26, 26, 46, .6) 60%, rgba(26, 26, 46, .1) 100%);
    z-index: 0;
}

.hero-content-wrap {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-row {
    min-height: 400px;
}

.hero-text-block {
    animation: fadeInUp 0.7s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--sl-green);
    color: #1a1a1a;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-wrap: balance;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

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

.hero-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

/* ==========================================================================
   JACKPOTS
   ========================================================================== */
.jackpot-section {
    background: var(--sl-dark);
    padding: 48px 0;
}

.jackpot-section .section-title {
    color: #fff;
}

.jackpot-section .section-sub {
    color: rgba(255, 255, 255, .55);
}

.jackpot-card {
    border-radius: var(--sl-radius);
    padding: 28px 16px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--sl-radius);
    opacity: .12;
}

.jackpot-card:hover {
    transform: translateY(-4px);
}

.jackpot-card--gold {
    background: rgba(255, 179, 0, .1);
    border: 1.5px solid rgba(255, 179, 0, .4);
}

.jackpot-card--silver {
    background: rgba(82, 116, 255, .1);
    border: 1.5px solid rgba(82, 116, 255, .4);
}

.jackpot-card--bronze {
    background: rgba(105, 210, 83, .1);
    border: 1.5px solid rgba(105, 210, 83, .4);
}

.jackpot-card--mini {
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(255, 255, 255, .15);
}

.jackpot-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.jackpot-name {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--sl-gold);
    transition: transform .2s ease;
}

/* ==========================================================================
   APP SECTION
   ========================================================================== */
.app-section {
    background: var(--sl-white);
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--sl-radius-sm);
    border: 2px solid var(--sl-border);
    background: var(--sl-bg);
    color: var(--sl-text);
    font-family: var(--font-head);
    font-weight: 600;
    transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none !important;
}

.app-btn:hover {
    border-color: var(--sl-blue);
    background: rgba(82, 116, 255, .05);
    color: var(--sl-blue);
    transform: translateX(4px);
    box-shadow: var(--sl-shadow);
}

.app-btn small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: .65;
    line-height: 1;
}

.app-btn span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.app-btn--ios svg {
    color: #555;
}

.app-btn--android svg {
    color: var(--sl-green-dark);
}

.app-btn--apk svg {
    color: var(--sl-blue);
}

/* App Table */
.app-table-wrap {
    border-radius: var(--sl-radius);
    box-shadow: var(--sl-shadow);
    overflow: hidden;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--sl-white);
}

.app-table tbody tr {
    border-bottom: 1px solid var(--sl-border);
    transition: background var(--transition);
}

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

.app-table tbody tr:hover {
    background: rgba(82, 116, 255, .04);
}

.app-table th, .app-table td {
    padding: 12px 16px;
    text-align: left;
}

.app-table th {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--sl-text-light);
    background: rgba(82, 116, 255, .04);
    width: 45%;
    border-right: 1px solid var(--sl-border);
}

.app-table td {
    font-weight: 500;
    color: var(--sl-text);
}

/* ==========================================================================
   BONUSES
   ========================================================================== */
.bonus-section {
    background: var(--sl-bg);
}

.bonus-slider-outer {
    position: relative;
    overflow: hidden;
    border-radius: var(--sl-radius);
}

.bonus-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94);
    padding: 8px 4px;
}

.bonus-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 240px;
    background: var(--sl-white);
    border-radius: var(--sl-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1.5px solid var(--sl-border);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(82, 116, 255, .18);
    border-color: var(--sl-blue);
}

.bonus-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sl-blue);
    color: #fff;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card--welcome .bonus-card__badge {
    background: var(--sl-blue);
}

.bonus-card--cashback .bonus-card__badge {
    background: var(--sl-green-dark);
}

.bonus-card--app .bonus-card__badge {
    background: var(--sl-gold);
    color: #1a1a1a;
}

.bonus-card__icon {
    margin: 24px auto 16px;
}

.bonus-card__title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--sl-dark);
    margin-bottom: 8px;
}

.bonus-card__amount {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--sl-blue);
    margin-bottom: 12px;
}

.bonus-card--cashback .bonus-card__amount {
    color: var(--sl-green-dark);
}

.bonus-card--app .bonus-card__amount {
    color: var(--sl-gold);
}

.bonus-card__desc {
    font-size: 13px;
    color: var(--sl-text-light);
    line-height: 1.55;
    margin-bottom: 20px;
}

.bonus-slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--sl-white);
    border: 2px solid var(--sl-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--sl-dark);
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    line-height: 1;
}

.bonus-slider-arrow:hover {
    background: var(--sl-blue);
    color: #fff;
    border-color: var(--sl-blue);
}

.bonus-slider-arrow--prev {
    left: 4px;
}

.bonus-slider-arrow--next {
    right: 4px;
}

.bonus-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.bonus-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sl-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.bonus-dot.active {
    background: var(--sl-blue);
    transform: scale(1.3);
}

/* ==========================================================================
   SLOT MACHINE
   ========================================================================== */
.slot-section {
    background: var(--sl-dark2);
}

.slot-section .section-title {
    color: #fff;
}

.slot-section .section-sub {
    color: rgba(255, 255, 255, .55);
}

.slot-machine-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.slot-machine {
    background: var(--sl-dark);
    border-radius: var(--sl-radius);
    border: 2px solid rgba(82, 116, 255, .3);
    padding: 32px 40px;
    min-width: 300px;
    box-shadow: 0 0 40px rgba(82, 116, 255, .2), inset 0 0 20px rgba(0, 0, 0, .3);
    position: relative;
}

.slot-reels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .05);
    border: 2px solid rgba(82, 116, 255, .4);
    border-radius: var(--sl-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slot-symbol {
    font-size: 40px;
    line-height: 1;
    transition: transform 0.1s ease;
    user-select: none;
}

.slot-reel.spinning .slot-symbol {
    animation: spin-reel 0.1s linear infinite;
}

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

.slot-sep {
    font-size: 24px;
    color: rgba(255, 255, 255, .2);
    font-weight: 300;
}

.slot-win-msg, .slot-lose-msg {
    margin-top: 16px;
    text-align: center;
    animation: fadeInUp .4s ease both;
}

.slot-win-inner {
    background: linear-gradient(135deg, rgba(105, 210, 83, .15), rgba(82, 116, 255, .1));
    border: 1.5px solid var(--sl-green);
    border-radius: var(--sl-radius-sm);
    padding: 20px;
}

.slot-win-text {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--sl-green);
    margin-bottom: 8px;
}

.slot-win-bonus {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 16px;
}

.slot-lose-msg p {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    margin: 0;
}

.slot-spin-btn {
    animation: none;
}

.slot-spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none !important;
}

.slot-note {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    margin: 0;
}

/* ==========================================================================
   CONTENT / CMS BLOCK
   ========================================================================== */
.content-section {
    background: var(--sl-white);
}

.content-article {
    border-radius: var(--sl-radius);
    padding: 40px;
    background: var(--sl-white);
    border: 1px solid var(--sl-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

/* Bare-tag CMS content styling */
.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
    font-family: var(--font-head);
    color: var(--sl-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.cms-content h2 {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--sl-border);
    padding-bottom: 8px;
}

.cms-content h3 {
    font-size: 1.15rem;
}

.cms-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.cms-content ul, .cms-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.cms-content ul li, .cms-content ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cms-content ul li::marker {
    color: var(--sl-blue);
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

.cms-content th {
    background: rgba(82, 116, 255, .08);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--sl-border);
}

.cms-content td {
    padding: 10px 14px;
    border: 1px solid var(--sl-border);
    vertical-align: top;
}

.cms-content tr:hover td {
    background: rgba(82, 116, 255, .03);
}

.cms-content a {
    color: var(--sl-blue);
    text-decoration: underline;
}

.cms-content a:hover {
    color: var(--sl-blue-dark);
}

.cms-content strong {
    color: var(--sl-dark);
    font-weight: 700;
}

.cms-content em {
    font-style: italic;
    color: var(--sl-text-light);
}

.cms-content blockquote {
    border-left: 4px solid var(--sl-blue);
    padding: 12px 20px;
    background: rgba(82, 116, 255, .05);
    border-radius: 0 var(--sl-radius-sm) var(--sl-radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
    color: var(--sl-text-light);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-section {
    background: var(--sl-bg);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.review-card {
    flex: 1 1 280px;
    background: var(--sl-white);
    border-radius: var(--sl-radius);
    padding: 24px;
    border: 1.5px solid var(--sl-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(82, 116, 255, .14);
    border-color: var(--sl-blue);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.review-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--sl-dark);
}

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

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sl-text-light);
    margin: 0;
}

/* Review Form */
.review-form-wrap {
    background: var(--sl-white);
    border-radius: var(--sl-radius);
    padding: 36px;
    border: 1.5px solid var(--sl-border);
    box-shadow: var(--sl-shadow);
    max-width: 560px;
    margin: 0 auto;
}

.review-form-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sl-dark);
    margin-bottom: 24px;
}

.form-group-sl {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label-sl {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--sl-text);
}

.req {
    color: #e53e3e;
}

.form-input-sl {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--sl-text);
    background: var(--sl-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input-sl:focus {
    border-color: var(--sl-blue);
    box-shadow: 0 0 0 3px rgba(82, 116, 255, .12);
    background: #fff;
}

.form-textarea-sl {
    resize: vertical;
    min-height: 100px;
}

.form-success-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 14px 16px;
    background: rgba(105, 210, 83, .1);
    border: 1.5px solid var(--sl-green);
    border-radius: var(--sl-radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--sl-text);
    animation: fadeInUp .4s ease;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--sl-dark);
    color: rgba(255, 255, 255, .75);
    padding: 56px 0 32px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 40px;
    margin-bottom: 32px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .55);
    margin: 12px 0 10px;
}

.footer-author {
    margin-top: 4px;
}

.footer-author small {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.footer-author-link {
    color: var(--sl-blue-light);
}

.footer-author-link:hover {
    color: #fff;
}

.footer-nav-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-link {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    transition: color var(--transition);
}

.footer-nav-link:hover {
    color: var(--sl-blue-light);
}

.footer-contact-block .footer-nav-title {
    margin-bottom: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, .7);
}

.footer-contact-link:hover {
    color: var(--sl-blue-light);
}

.footer-section-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.pay-badge, .prov-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-head);
}

.pay-badge {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .12);
}

.prov-badge {
    background: rgba(82, 116, 255, .12);
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(82, 116, 255, .2);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
}

.footer-legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

/* ==========================================================================
   BOTTOM WIDGET
   ========================================================================== */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--sl-dark);
    border-top: 2px solid var(--sl-blue);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .25);
    transform: translateY(0);
    transition: transform .35s ease;
}

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

.bottom-widget__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bottom-widget__text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bw-bonus {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--sl-green);
}

.bw-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

.bw-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 4px;
    transition: color var(--transition);
    margin-left: 4px;
}

.bw-close:hover {
    color: #fff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: var(--sl-white);
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 24px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, .15);
        transition: left .3s ease;
        overflow-y: auto;
    }

    .header-nav.open {
        left: 0;
    }

    .header-nav__list {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .header-nav__link {
        font-size: 15px;
        padding: 12px 16px;
        border-radius: var(--sl-radius-sm);
    }

    .burger {
        display: flex;
    }

    .header-inner {
        gap: 8px;
    }

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

    .bonus-slider-arrow {
        display: flex;
    }

    .bonus-slider-dots {
        display: flex;
    }
}

@media (max-width: 767px) {
    .section-wrap {
        padding: 48px 0;
    }

    .hero-section {
        min-height: 420px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

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

    .hero-cta-main, .hero-cta-sec {
        width: 100%;
        justify-content: center;
    }

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

    .review-card {
        flex: 1 1 100%;
    }

    .content-article {
        padding: 24px 16px;
    }

    .review-form-wrap {
        padding: 24px 16px;
    }

    .header-actions .btn-sl--sm {
        padding: 7px 12px;
        font-size: 12px;
    }

    .header-online {
        display: none;
    }

    .bottom-widget__inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 12px;
    }
}

@media (max-width: 479px) {
    .jackpot-card {
        padding: 20px 10px;
    }

    .slot-machine {
        padding: 24px 16px;
        min-width: auto;
    }

    .slot-reel {
        width: 60px;
        height: 60px;
    }

    .slot-symbol {
        font-size: 30px;
    }
}

/* ==========================================================================
   ANIMATIONS / TRANSITIONS
   ========================================================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* Smooth jackpot pulse */
@keyframes jackpot-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.jackpot-amount.updating {
    animation: jackpot-pulse .3s ease;
}

/* WP-compat unused styles for obfuscation */
.wp-block-group, .wp-block-columns {
    display: flex;
    flex-wrap: wrap;
}

.elementor-widget-container {
    position: relative;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
    border: 1px solid var(--sl-border);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget_text, .widget_categories {
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.pingback, .trackback {
    display: none;
}
