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

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

:root {
    --c-header: #401217;
    --c-footer: #401217;
    --c-bg: #190101;
    --c-btn-primary: #FEB600;
    --c-btn-secondary: #37040E;
    --c-text: #f0e6d3;
    --c-text-muted: #b89a7a;
    --c-gold: #FEB600;
    --c-gold-light: #ffd04d;
    --c-red-dark: #37040E;
    --c-red-mid: #5a0a13;
    --c-card-bg: #220508;
    --c-border: #4d1219;
    --c-input-bg: #2a060b;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.55);
    --transition: 0.22s ease;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-gold-light);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: var(--c-text);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--c-text-muted);
}

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

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

.section-gap {
    padding: 60px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, #FEB600, #e6a000);
    color: #1a0000;
    box-shadow: 0 2px 12px rgba(254, 182, 0, 0.35);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #ffc933, #FEB600);
    color: #1a0000;
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

.btn--secondary:hover {
    background: var(--c-red-mid);
    color: var(--c-text);
}

.btn--lg {
    padding: 15px 38px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--c-gold);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--c-text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.card-block {
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 48px 0;
}

/* ======== HEADER ======== */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

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

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

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

.header-nav a {
    color: #f0e6d3;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.header-nav a:hover {
    background: rgba(254, 182, 0, 0.15);
    color: var(--c-gold);
}

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

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

.online-dot {
    width: 8px;
    height: 8px;
    background: #6dffb3;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.35);
    }
}

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

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

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

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

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

.mobile-menu {
    display: none;
    background: #2e0a0e;
    border-top: 1px solid var(--c-border);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-inner a {
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: block;
    transition: background var(--transition);
}

.mobile-menu-inner a:hover {
    background: rgba(254, 182, 0, 0.12);
    color: var(--c-gold);
}

/* ======== HERO ======== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-casoola.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 1, 1, 0.92) 40%, rgba(25, 1, 1, 0.6) 75%, rgba(25, 1, 1, 0.3) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 182, 0, 0.15);
    border: 1px solid rgba(254, 182, 0, 0.4);
    color: var(--c-gold);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-content h1 {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--c-gold);
}

.hero-content p {
    font-size: 1.05rem;
    color: #d4b896;
    margin-bottom: 28px;
    max-width: 480px;
}

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

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

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

.hero-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-top: 3px;
}

/* ======== JACKPOTS ======== */
.jackpots-section {
    padding: 60px 0;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.jackpot-card {
    background: linear-gradient(145deg, #2a0508, #1e0305);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FEB600, #e6a000);
}

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

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

.jackpot-name {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
}

.jackpot-currency {
    font-size: 1rem;
    color: var(--c-gold-light);
    font-weight: 600;
}

/* ======== SCREENSHOTS ======== */
.screenshots-section {
    padding: 60px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/10;
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

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

/* ======== WINNERS ======== */
.winners-section {
    padding: 60px 0;
}

.winners-table-wrap {
    overflow-x: auto;
    margin-top: 36px;
}

.winners-table {
    width: 100%;
    min-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table thead {
    background: var(--c-header);
}

.winners-table th {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-gold);
    white-space: nowrap;
}

.winners-table tbody tr {
    background: var(--c-card-bg);
    transition: background var(--transition);
}

.winners-table tbody tr:nth-child(even) {
    background: #250609;
}

.winners-table tbody tr:hover {
    background: #30080d;
}

.winners-table td {
    padding: 12px 18px;
    font-size: 0.9rem;
    border-top: 1px solid var(--c-border);
}

.winners-table td.rank {
    font-weight: 800;
    color: var(--c-gold);
    font-size: 1rem;
}

.winners-table td.nick {
    font-weight: 600;
    color: var(--c-text);
}

.winners-table td.prize {
    font-weight: 700;
    color: #6dffb3;
}

.medal-gold {
    color: #FFD700;
}

.medal-silver {
    color: #C0C0C0;
}

.medal-bronze {
    color: #CD7F32;
}

/* ======== APP INFO ======== */
.app-section {
    padding: 60px 0;
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.app-table-wrap {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.app-table tr {
    border-bottom: 1px solid var(--c-border);
}

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

.app-table td {
    padding: 12px 18px;
    font-size: 0.9rem;
    vertical-align: top;
}

.app-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
}

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

.app-download {
    margin-top: 28px;
}

.app-download h3 {
    color: var(--c-gold);
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    color: var(--c-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.app-dl-btn:hover {
    background: var(--c-red-mid);
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateX(4px);
}

.app-dl-btn svg {
    flex-shrink: 0;
}

.app-dl-btn-text {
    display: flex;
    flex-direction: column;
}

.app-dl-btn-sub {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    font-weight: 400;
    margin-bottom: 1px;
}

.app-dl-btn-main {
    font-size: 0.98rem;
    font-weight: 700;
}

/* ======== SLOT MINI-GAME ======== */
.slot-section {
    padding: 60px 0;
}

.slot-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(145deg, #220306, #1a0203);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.slot-title {
    font-size: 1.3rem;
    color: var(--c-gold);
    margin-bottom: 6px;
}

.slot-sub {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
}

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

.slot-reel {
    width: 80px;
    height: 88px;
    background: #0f0101;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
}

.slot-reel.spinning {
    border-color: var(--c-gold);
    animation: reel-shake 0.15s infinite alternate;
}

@keyframes reel-shake {
    from {
        transform: translateY(-2px);
    }
    to {
        transform: translateY(2px);
    }
}

.slot-btn-wrap {
    margin-bottom: 20px;
}

.slot-result {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slot-win-msg {
    font-size: 1.15rem;
    font-weight: 800;
    color: #6dffb3;
    animation: fadeInUp 0.4s ease;
}

.slot-lose-msg {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e05555;
}

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

.slot-credits {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    margin-top: 14px;
}

/* ======== REVIEW CONTENT ======== */
.review-section {
    padding: 60px 0;
}

.review-author-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 36px;
}

.review-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-red-mid);
    border: 2px solid var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 700;
    color: var(--c-text);
    font-size: 1rem;
}

.review-author-role {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.review-author-bio {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    margin-top: 8px;
    line-height: 1.55;
}

.review-author-link {
    font-size: 0.82rem;
    color: var(--c-gold);
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-content-block {
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.review-content-block h2 {
    color: var(--c-gold);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 12px;
}

.review-content-block h3 {
    color: #f0d0a0;
    margin: 24px 0 10px;
}

.review-content-block h4 {
    color: #d4b896;
    margin: 18px 0 8px;
}

.review-content-block p {
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.review-content-block ul, .review-content-block ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--c-text-muted);
}

.review-content-block li {
    margin-bottom: 6px;
    line-height: 1.65;
}

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

.review-content-block th {
    background: var(--c-header);
    color: var(--c-gold);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    border: 1px solid var(--c-border);
}

.review-content-block td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.review-content-block strong {
    color: var(--c-text);
}

.review-content-block a {
    color: var(--c-gold);
}

.review-content-block blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 10px 18px;
    background: rgba(254, 182, 0, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--c-text-muted);
}

/* ======== REVIEWS ======== */
.reviews-section {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 36px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-red-mid);
    border: 2px solid var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--c-gold);
    flex-shrink: 0;
}

.review-card-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--c-text);
}

.review-date {
    font-size: 0.76rem;
    color: var(--c-text-muted);
}

.review-stars {
    color: var(--c-gold);
    display: flex;
    gap: 2px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

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

.review-form-wrap {
    background: var(--c-card-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 560px;
}

.review-form-wrap h3 {
    color: var(--c-gold);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-group input, .form-group textarea {
    background: var(--c-input-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--c-gold);
}

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

.form-success {
    display: none;
    background: rgba(109, 255, 179, 0.12);
    border: 1px solid #6dffb3;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #6dffb3;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 16px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* ======== FOOTER ======== */
.site-footer {
    background: var(--c-footer);
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand-desc {
    font-size: 0.85rem;
    color: rgba(240, 230, 211, 0.65);
    line-height: 1.65;
}

.footer-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-gold);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(240, 230, 211, 0.7);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--c-gold);
}

.footer-logos-row {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logos-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(240, 230, 211, 0.75);
    transition: background var(--transition);
}

.footer-logo-badge:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(240, 230, 211, 0.45);
    line-height: 1.7;
    max-width: 680px;
}

.footer-copyright a {
    color: rgba(240, 230, 211, 0.55);
}

.footer-copyright a:hover {
    color: var(--c-gold);
}

.footer-legal-age {
    background: rgba(254, 182, 0, 0.12);
    border: 1px solid rgba(254, 182, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.78rem;
    color: var(--c-gold);
    font-weight: 700;
    white-space: nowrap;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #220306, #2f0709);
    border-top: 2px solid var(--c-gold);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-text);
}

.widget-text span {
    color: var(--c-gold);
    font-weight: 800;
}

.widget-close {
    background: none;
    border: none;
    color: rgba(240, 230, 211, 0.5);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.widget-close:hover {
    color: var(--c-text);
}

body.widget-closed .sticky-widget {
    display: none;
}

body.widget-closed {
    padding-bottom: 0 !important;
}

body:not(.widget-closed) {
    padding-bottom: 68px;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.info-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 0;
}

.info-content h1 {
    color: var(--c-gold);
    margin-bottom: 28px;
}

.info-content h2 {
    color: #f0d0a0;
    margin: 28px 0 12px;
    font-size: 1.25rem;
}

.info-content p {
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.info-content ul {
    padding-left: 22px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.info-content li {
    margin-bottom: 7px;
    line-height: 1.65;
}

.info-content a {
    color: var(--c-gold);
}

.info-content strong {
    color: var(--c-text);
}

.wpc-gd8xz2 {
    display: none;
}

.entry-content .wp-block-xp7r {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.elementor-widget-container .k9m3q {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wp-post-image.lazy-p4c {
    will-change: auto;
}

.page-id-zz91q {
    outline: none;
}

.ep-widget-b7h2 {
    font-size: 0;
    line-height: 0;
}

.yoast-seo-meta-tag {
    display: contents;
}

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

    .app-inner {
        grid-template-columns: 1fr;
    }

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

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

    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .online-badge {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }

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

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

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

    .slot-reels {
        gap: 8px;
    }

    .slot-reel {
        width: 68px;
        height: 76px;
        font-size: 2.1rem;
    }

    .winners-table th, .winners-table td {
        padding: 10px 12px;
    }

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

    .card-block {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

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

    .header-actions {
        gap: 7px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 0.85rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}
