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

:root {
    --c-bg: #000a12;
    --c-header: #262A34;
    --c-btn-primary: #F9C23C;
    --c-btn-secondary: #3C3C3C;
    --c-text: #e8eaf0;
    --c-text-muted: #9aa0b0;
    --c-accent: #F9C23C;
    --c-accent-hover: #e6b02e;
    --c-border: rgba(249, 194, 60, 0.18);
    --c-card: #0d1a26;
    --c-card2: #111b27;
    --c-green: #2ecc71;
    --c-red: #e74c3c;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.22s ease;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

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

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

body {
    font-family: 'Rubik', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: var(--c-accent);
    transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.b3kx91 {
    display: none;
}

.wp-post-image {
    display: none;
}

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

.x7qr24 {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.d9mk55 {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.f2jz88[data-widget-id] {
    display: none;
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

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


/* ─── HEADER ─── */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

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

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

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

.header-nav a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(249, 194, 60, 0.12);
    color: var(--c-accent);
}

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

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulse-dot 1.6s infinite;
}

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

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    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-menu {
    display: none;
    flex-direction: column;
    background: var(--c-header);
    padding: 12px 20px 16px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    background: rgba(249, 194, 60, 0.12);
    color: var(--c-accent);
}


/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
    white-space: nowrap;
    line-height: 1;
    padding: 10px 18px;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

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

.btn-primary {
    background: var(--c-btn-primary);
    color: #1a1200;
}

.btn-primary:hover {
    background: var(--c-accent-hover);
    box-shadow: 0 4px 20px rgba(249, 194, 60, 0.4);
    color: #1a1200;
    filter: brightness(1.05);
}

.btn-secondary {
    background: var(--c-btn-secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background: #4a4a4a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: var(--radius-md);
}

.btn-md {
    padding: 11px 22px;
    font-size: 15px;
}

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

.btn-full {
    width: 100%;
}


/* ───  ─── */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000c18;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/rocketplay-hero.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 10, 18, 0.92) 0%, rgba(0, 10, 18, 0.55) 60%, rgba(0, 10, 18, 0.15) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(249, 194, 60, 0.15);
    border: 1px solid var(--c-border);
    color: var(--c-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    text-balance: balance;
}

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

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--c-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 480px;
}

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

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

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

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
}

.hero-stat span {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ─── BREADCRUMBS ─── */
.breadcrumbs-wrap {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--c-text-muted);
}

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

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

.breadcrumbs-sep {
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

.breadcrumbs span:last-child {
    color: var(--c-accent);
}


/* ─── MAIN CONTENT AREA ─── */
.main-content {
    padding: 48px 0 60px;
}

.section-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 32px;
}

.section-block {
    background: var(--c-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 32px;
}


.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-col, .cons-col {
    border-radius: var(--radius-md);
    padding: 28px;
}

.pros-col {
    background: rgba(46, 204, 113, 0.07);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.cons-col {
    background: rgba(231, 76, 60, 0.07);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.pros-cons-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.pros-col .pros-cons-heading {
    color: var(--c-green);
}

.cons-col .pros-cons-heading {
    color: var(--c-red);
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--c-text);
    line-height: 1.55;
}

.pros-cons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.pros-col .pros-cons-list li::before {
    background-color: rgba(46, 204, 113, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232ecc71' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cons-col .pros-cons-list li::before {
    background-color: rgba(231, 76, 60, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23e74c3c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* ─── APP BLOCK ─── */
.app-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    min-width: 380px;
}

.app-table th, .app-table td {
    text-align: left;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-table th {
    background: rgba(249, 194, 60, 0.1);
    color: var(--c-accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.app-table tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.02);
}

.app-table tr:hover td {
    background: rgba(249, 194, 60, 0.05);
}

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

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 22px;
    text-decoration: none;
    color: var(--c-text);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.app-store-btn:hover {
    background: rgba(249, 194, 60, 0.1);
    border-color: var(--c-border);
    transform: translateY(-2px);
    color: #fff;
}

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


/* ─── BONUSES SLIDER ─── */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-btn-primary);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(249, 194, 60, 0.15);
}

.bonus-badge {
    display: inline-block;
    background: rgba(249, 194, 60, 0.12);
    color: var(--c-accent);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

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

.bonus-amount small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-text-muted);
}

.bonus-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.bonus-desc {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.55;
    flex: 1;
}

.bonus-terms {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.45;
}

.bonuses-slider-wrap {
    display: none;
}

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

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

.slider-dot.active {
    background: var(--c-accent);
}


/* ─── SLOT GAME ─── */
.slot-machine {
    text-align: center;
}

.slot-reels-wrap {
    display: inline-flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin: 0 auto 28px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(249, 194, 60, 0.1);
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: var(--c-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.1s;
    user-select: none;
    overflow: hidden;
}

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

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

.slot-spin-btn {
    font-size: 1.05rem;
    padding: 16px 44px;
    margin-bottom: 24px;
}

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

.slot-result-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-accent);
    animation: fadeInUp 0.4s ease;
}

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

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

.slot-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    text-align: center;
}


/* ─── REVIEW CONTENT ─── */
.review-author-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.review-author-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent);
    flex-shrink: 0;
}

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

.review-author-info p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.review-author-info a {
    color: var(--c-accent);
    font-size: 13px;
}

.review-content-inner {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--c-text);
}

.review-content-inner h2,
.review-content-inner h3,
.review-content-inner h4 {
    color: #fff;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.review-content-inner h4 {
    font-size: 1.1rem;
}

.review-content-inner p {
    margin-bottom: 16px;
}

.review-content-inner ul,
.review-content-inner ol {
    margin: 0 0 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-content-inner ul li::marker {
    color: var(--c-accent);
}

.review-content-inner ol li::marker {
    color: var(--c-accent);
}

.review-content-inner a {
    color: var(--c-accent);
}

.review-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.review-content-inner table th,
.review-content-inner table td {
    text-align: left;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-content-inner table th {
    background: rgba(249, 194, 60, 0.1);
    color: var(--c-accent);
    font-weight: 600;
}

.review-content-inner table tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.02);
}

.review-content-inner strong {
    color: #fff;
}

.review-content-inner em {
    color: var(--c-text-muted);
}

.review-content-inner blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(249, 194, 60, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.review-content-inner img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.review-content-inner hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 28px 0;
}


/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.testimonial-card {
    background: var(--c-card2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

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

.testimonial-meta h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.testimonial-meta span {
    font-size: 12px;
    color: var(--c-text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--c-accent);
}

.testimonial-text {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.review-form-wrap {
    background: var(--c-card2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 32px;
}

.review-form-wrap h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #fff;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(249, 194, 60, 0.12);
    background: rgba(249, 194, 60, 0.03);
}

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

.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--c-green);
    font-weight: 500;
    margin-top: 14px;
    animation: fadeInUp 0.4s ease;
}


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

.faq-item {
    background: var(--c-card2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(249, 194, 60, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), border-color var(--transition);
}

.faq-icon::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--c-text);
    border-bottom: 1.5px solid var(--c-text);
    transform: rotate(45deg) translate(-1px, -2px);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    border-color: var(--c-accent);
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: var(--c-text-muted);
    line-height: 1.65;
}

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


/* ─── FOOTER ─── */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand p {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-links-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-accent);
    margin-bottom: 14px;
}

.footer-links-col a {
    display: block;
    font-size: 13.5px;
    color: var(--c-text-muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: #fff;
}

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

.footer-middle h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

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

.logo-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.logo-pill:hover {
    background: rgba(249, 194, 60, 0.08);
    color: var(--c-text);
}

.footer-bottom {
    padding: 20px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}

.footer-bottom-inner {
    padding: 20px 0;
}

.legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.7;
    max-width: 860px;
}

.copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    padding-top: 2px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(231, 76, 60, 0.15);
    border: 1.5px solid rgba(231, 76, 60, 0.4);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    color: var(--c-red);
    margin-right: 10px;
    flex-shrink: 0;
}

.footer-legal-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}


.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #1a1400 0%, var(--c-header) 100%);
    border-top: 2px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(249, 194, 60, 0.15);
}

.sticky-widget-text {
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
}

.sticky-widget-text strong {
    color: var(--c-accent);
}

.sticky-widget-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    line-height: 1;
}

.sticky-widget-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}


.info-content {
    padding: 48px 0 64px;
}

.info-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 24px;
}

.info-content p {
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.75;
}

.info-content h2 {
    font-size: 1.35rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.info-content h3 {
    font-size: 1.15rem;
    margin-top: 22px;
    margin-bottom: 8px;
}

.info-content ul, .info-content ol {
    margin: 0 0 14px 22px;
}

.info-content li {
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 5px;
}

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


/* ───  ─── */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.anim-fadein {
    animation: fadeIn 0.5s ease forwards;
}

.anim-slideinup {
    animation: slideInUp 0.5s ease forwards;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}


/* ───  ─── */
.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

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

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-2 {
    gap: 16px;
}


.e8nk21 {
    font-weight: 400;
    letter-spacing: normal;
}

.q4xm93 {
    margin: 0;
}

.rp77b5 {
    position: relative;
}

.jd09cz > * {
    pointer-events: auto;
}

.l1xt58 + .l1xt58 {
    border-top: 1px solid transparent;
}

.wp-block-group__inner-container {
    max-width: 100%;
}

.entry-content .wp-block {
    margin-bottom: 0;
}

.elementor-widget-container {
    line-height: inherit;
}

.elementor-section-wrap {
    display: block;
}

.has-text-align-center {
    text-align: center;
}

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

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.alignleft {
    float: left;
    margin-right: 20px;
}


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

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

    .footer-bottom {
        grid-template-columns: 1fr;
    }

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

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

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider-wrap {
        display: block;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 18px;
    }

    .section-block {
        padding: 24px 18px;
    }

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

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sticky-widget {
        flex-direction: column;
        gap: 10px;
        padding: 14px 48px 14px 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

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

    .slot-reels-wrap {
        padding: 14px 16px;
    }

    .slot-reel {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .app-download-btns {
        flex-direction: column;
    }

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

    .review-author-card {
        flex-direction: column;
        text-align: center;
    }
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #111b27;
    border: 1px solid rgba(249, 194, 60, .18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(249, 194, 60, .06);
}

.faq-icon {
    position: relative;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: rgba(249, 194, 60, .12);
    border: 1px solid rgba(249, 194, 60, .28);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 2px;
    background: #F9C23C;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
    opacity: 0;
}

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

.faq-answer-inner {
    padding: 0 20px 20px;
    color: #9aa0b0;
    font-size: 14px;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    #faq.section-block {
        padding: 22px 14px;
        border-radius: 18px;
    }

    #faq .section-title {
        font-size: 1.35rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    #faq .section-subtitle {
        font-size: .9rem;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        padding: 15px 14px;
        font-size: .92rem;
    }

    .faq-answer-inner {
        padding: 0 14px 16px;
        font-size: .86rem;
    }
}