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

:root {
    --c-header: #401217;
    --c-footer: #401217;
    --c-bg: #190101;
    --c-btn-primary: #FEB600;
    --c-btn-secondary: #37040E;
    --c-text: #f0e6d3;
    --c-text-muted: #c9a97a;
    --c-gold: #FEB600;
    --c-gold-light: #ffd04d;
    --c-border: rgba(254, 182, 0, 0.18);
    --c-card: rgba(64, 18, 23, 0.72);
    --c-card-hover: rgba(87, 22, 30, 0.9);
    --c-overlay: rgba(25, 1, 1, 0.82);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 2px 24px rgba(254, 182, 0, 0.18);
    --font: 'Manrope', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--c-bg);
}

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

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

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

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 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-text);
}

h1 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: 0.85rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.7rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.35rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #1a0000;
    padding: 11px 26px;
    box-shadow: 0 2px 18px rgba(254, 182, 0, 0.28);
}

.btn--primary:hover {
    background: var(--c-gold-light);
    color: #1a0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(254, 182, 0, 0.38);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: var(--c-text);
    padding: 10px 22px;
    border: 1px solid rgba(254, 182, 0, 0.3);
}

.btn--secondary:hover {
    background: #4f0a14;
    color: var(--c-gold);
    transform: translateY(-1px);
}

.btn--lg {
    font-size: 1.08rem;
    padding: 14px 36px;
    border-radius: var(--radius);
}

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

.section {
    padding: 56px 0;
}

.section--sm {
    padding: 32px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    color: var(--c-gold);
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
    margin: 8px auto 0;
    border-radius: 2px;
}

.xb4k2 {
    display: none;
}

.q7r3m {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wp-block-spacer {
    height: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.wp-caption {
    max-width: 100%;
}

.screen-reader-text {
    position: absolute;
    left: -9999em;
}

.entry-meta {
    font-size: 0.85em;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.header-outer {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

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

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

.header-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

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

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

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

.header-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

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

.header-online-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-header);
    z-index: 999;
    padding: 16px 18px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.22s ease;
}

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

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 0;
    border-bottom: 1px solid rgba(254, 182, 0, 0.1);
    transition: color var(--transition);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--c-gold);
}

.mobile-menu svg {
    width: 18px;
    height: 18px;
}

.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 1, 1, 0.87) 40%, rgba(64, 18, 23, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 80px 0 80px;
}

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

.hero-badge svg {
    width: 14px;
    height: 14px;
}

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

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

.hero-desc {
    font-size: 1.08rem;
    color: rgba(240, 230, 211, 0.85);
    margin-bottom: 28px;
    max-width: 500px;
}

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

.hero-trust {
    margin-top: 28px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
}

.breadcrumbs-bar {
    background: rgba(64, 18, 23, 0.5);
    border-bottom: 1px solid var(--c-border);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 0;
    font-size: 0.82rem;
    flex-wrap: wrap;
}

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

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

.breadcrumbs-sep {
    color: rgba(240, 230, 211, 0.3);
}

.breadcrumbs span {
    color: var(--c-gold);
    font-weight: 600;
}

.info-table-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr:nth-child(even) {
    background: rgba(25, 1, 1, 0.3);
}

.info-table tr:hover {
    background: rgba(254, 182, 0, 0.05);
}

.info-table td {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(254, 182, 0, 0.07);
    vertical-align: middle;
}

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

.info-table .it-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    width: 46%;
}

.info-table .it-label svg {
    width: 18px;
    height: 18px;
    color: var(--c-gold);
    flex-shrink: 0;
}

.info-table .it-value {
    color: var(--c-text);
    font-weight: 500;
    font-size: 0.93rem;
}

.payment-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.payment-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.payment-table th {
    background: rgba(64, 18, 23, 0.95);
    color: var(--c-gold);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--c-border);
}

.payment-table td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(254, 182, 0, 0.07);
    font-size: 0.88rem;
    color: var(--c-text);
    vertical-align: middle;
}

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

.payment-table tr:nth-child(even) td {
    background: rgba(25, 1, 1, 0.25);
}

.payment-table tr:hover td {
    background: rgba(254, 182, 0, 0.04);
}

.payment-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-icon {
    width: 36px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.winners-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
}

.winners-table thead th {
    background: rgba(64, 18, 23, 0.95);
    color: var(--c-gold);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 20px;
    text-align: left;
    border-bottom: 2px solid var(--c-border);
}

.winners-table tbody td {
    padding: 11px 20px;
    border-bottom: 1px solid rgba(254, 182, 0, 0.07);
    font-size: 0.9rem;
    color: var(--c-text);
}

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

.winners-table tbody tr:hover td {
    background: rgba(254, 182, 0, 0.04);
}

.winner-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.82rem;
}

.winner-rank--1 {
    background: #FFD700;
    color: #1a0000;
}

.winner-rank--2 {
    background: #C0C0C0;
    color: #1a0000;
}

.winner-rank--3 {
    background: #CD7F32;
    color: #fff;
}

.winner-rank--n {
    background: rgba(254, 182, 0, 0.1);
    color: var(--c-text-muted);
}

.winner-amount {
    color: #4ecb71;
    font-weight: 700;
}

.app-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.app-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(254, 182, 0, 0.07);
    font-size: 0.9rem;
}

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

.app-table .at-label {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 45%;
}

.app-table .at-value {
    color: var(--c-text);
}

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

.btn-store {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(64, 18, 23, 0.85);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    font-weight: 600;
    font-size: 0.88rem;
}

.btn-store:hover {
    background: rgba(87, 22, 30, 0.9);
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.btn-store svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-store small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.btn-store strong {
    display: block;
    font-size: 0.92rem;
}

.app-visual {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.app-visual-img {
    width: 180px;
    height: 340px;
    background: linear-gradient(145deg, #401217, #1a0003);
    border: 2px solid var(--c-border);
    border-radius: 28px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(254, 182, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.app-visual-img::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(254, 182, 0, 0.25);
    border-radius: 3px;
}

.app-phone-icon {
    color: var(--c-gold);
    opacity: 0.35;
}

.slot-machine {
    background: linear-gradient(145deg, #2a0308, #1a0101);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow), 0 0 60px rgba(254, 182, 0, 0.08);
    max-width: 520px;
    margin: 0 auto;
}

.slot-machine h3 {
    color: var(--c-gold);
    margin-bottom: 8px;
}

.slot-machine p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.slot-reel {
    width: 80px;
    height: 80px;
    background: rgba(64, 18, 23, 0.9);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.1s;
    overflow: hidden;
    position: relative;
}

.slot-reel.spinning {
    animation: spinReel 0.08s steps(1) infinite;
}

@keyframes spinReel {
    0% {
        content: '';
    }
    100% {
    }
}

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

.slot-result-win {
    color: #4ecb71;
    font-weight: 800;
    font-size: 1.12rem;
    animation: fadeInUp 0.4s ease;
}

.slot-result-lose {
    color: var(--c-text-muted);
    font-size: 0.92rem;
}

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

.slot-balance {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}

.slot-credits {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 20px;
}

.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #401217, #FEB600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a0000;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--c-text);
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}

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

.author-links a {
    font-size: 0.8rem;
    color: var(--c-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.author-links svg {
    width: 14px;
    height: 14px;
}

.review-content {
    line-height: 1.75;
}

.review-content h2, .review-content h3, .review-content h4 {
    color: var(--c-gold);
    margin: 1.5em 0 0.6em;
}

.review-content h2 {
    font-size: 1.35rem;
}

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

.review-content p {
    margin-bottom: 1em;
    color: var(--c-text);
}

.review-content a {
    color: var(--c-gold);
    text-decoration: underline;
}

.review-content ul, .review-content ol {
    padding-left: 1.6em;
    margin-bottom: 1em;
}

.review-content li {
    margin-bottom: 0.4em;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-content table th {
    background: rgba(64, 18, 23, 0.95);
    color: var(--c-gold);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--c-border);
}

.review-content table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
}

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

.review-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 10px 16px;
    margin: 1.2em 0;
    background: rgba(254, 182, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.review-content strong {
    color: var(--c-gold-light);
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
}

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

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open {
    border-color: rgba(254, 182, 0, 0.4);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--c-text);
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--c-gold);
}

.faq-q-text {
    flex: 1;
    text-align: left;
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(254, 182, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background: rgba(254, 182, 0, 0.25);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--c-gold);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1), padding var(--transition);
}

.faq-item.is-open .faq-a {
    max-height: 400px;
    padding: 0 22px 18px;
}

.faq-a p {
    color: var(--c-text-muted);
    font-size: 0.93rem;
    margin: 0;
}

.footer-outer {
    background: var(--c-footer);
    margin-top: auto;
    border-top: 2px solid rgba(254, 182, 0, 0.18);
}

.footer-main {
    padding: 48px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

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

.footer-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.footer-country img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--c-gold);
    color: #1a0000;
}

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

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav a {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

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

.footer-email {
    font-size: 0.88rem;
    color: var(--c-gold);
    word-break: break-all;
}

.footer-logos-row {
    margin-bottom: 18px;
}

.footer-logos-row h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.footer-logo-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(254, 182, 0, 0.12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 182, 0, 0.12);
    padding: 20px 0;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(240, 230, 211, 0.45);
}

.footer-legal {
    font-size: 0.78rem;
    color: rgba(240, 230, 211, 0.38);
    max-width: 640px;
    text-align: right;
    line-height: 1.5;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #2a0308 0%, #401217 100%);
    border-top: 2px solid rgba(254, 182, 0, 0.35);
    padding: 12px 18px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.widget-text {
    flex: 1;
    min-width: 200px;
}

.widget-title {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 2px;
}

.widget-bonus {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-gold);
}

.widget-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.widget-code {
    background: rgba(254, 182, 0, 0.08);
    border: 1.5px dashed var(--c-gold);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background var(--transition);
    user-select: all;
}

.widget-code:hover {
    background: rgba(254, 182, 0, 0.15);
}

.widget-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(240, 230, 211, 0.45);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
    flex-shrink: 0;
}

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

.widget-close svg {
    width: 18px;
    height: 18px;
}

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

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

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

.info-page-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.info-page-content h1 {
    color: var(--c-gold);
    margin-bottom: 1.2rem;
}

.info-page-content h2 {
    color: var(--c-gold);
    font-size: 1.2rem;
    margin: 1.6em 0 0.6em;
}

.info-page-content h3 {
    color: var(--c-text);
    font-size: 1.05rem;
    margin: 1.2em 0 0.4em;
}

.info-page-content p {
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 1em;
}

.info-page-content ul, .info-page-content ol {
    padding-left: 1.6em;
    margin-bottom: 1em;
}

.info-page-content li {
    color: var(--c-text-muted);
    margin-bottom: 0.4em;
}

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

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

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

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .header-online {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-inner {
        height: 60px;
    }

    .mobile-menu {
        top: 60px;
    }

    .section {
        padding: 40px 0;
    }

    .app-block {
        flex-direction: column;
    }

    .app-visual {
        display: none;
    }

    .footer-grid {
        gap: 28px;
    }

    .review-block {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 56px 0;
    }

    .hero-actions {
        gap: 10px;
    }

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

    .info-table .it-label {
        font-size: 0.82rem;
    }

    .sticky-widget {
        flex-direction: column;
        text-align: center;
    }

    .widget-promo {
        justify-content: center;
    }

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

    .footer-legal {
        text-align: center;
    }

    .winners-table thead th, .winners-table tbody td {
        padding: 9px 12px;
        font-size: 0.82rem;
    }
}

.wp-content {
    display: none;
}

.elementor-section {
    padding: 0;
}

.et_pb_section {
    padding: 0;
}

.vc_row {
    margin: 0;
}

.post-thumbnail {
    display: none;
}

.entry-header {
    display: none;
}

.wpcf7 {
    display: none;
}

#wpadminbar {
    display: none !important;
}

.rtm-x7 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.nk-q9b2 {
    display: none;
}

.y2v-placeholder {
    visibility: hidden;
    position: absolute;
}
