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

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

:root {
    --c-header: #372873;
    --c-header-dark: #2a1e5a;
    --c-bg: #1e1450;
    --c-bg-card: #271a6e;
    --c-bg-card2: #1a1144;
    --c-btn-primary: #ffce1c;
    --c-btn-primary-h: #f5c200;
    --c-btn-secondary: #196d8f;
    --c-btn-secondary-h: #145a77;
    --c-text: #e8e4ff;
    --c-text-muted: #a89ed4;
    --c-accent: #ffce1c;
    --c-border: rgba(255, 255, 255, 0.1);
    --c-border2: rgba(255, 206, 28, 0.25);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --trans: 0.22s ease;
}

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

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

a {
    color: var(--c-btn-secondary);
    text-decoration: none;
    transition: color var(--trans);
}

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

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

ul {
    list-style: none;
}

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

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

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

.x7f2a, .m9k3b {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
}

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

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

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

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

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

.btn--secondary:hover {
    background: var(--c-btn-secondary-h);
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
}

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

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

.btn--outline:hover {
    background: var(--c-btn-secondary);
    color: #fff;
}

.section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

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

.section-label {
    display: inline-block;
    background: var(--c-border2);
    color: var(--c-accent);
    border: 1px solid var(--c-border2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

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

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.header-nav ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d0c8ff;
    padding: 8px 11px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    transition: background var(--trans), color var(--trans);
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header-nav ul li a svg {
    flex-shrink: 0;
}

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

.header-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.5
    }
}

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

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--trans);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header-dark);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.mobile-menu-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/ig-hero.jpg') center/cover no-repeat;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 20, 80, 0.92) 0%, rgba(55, 40, 115, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 206, 28, 0.15);
    border: 1px solid rgba(255, 206, 28, 0.4);
    color: var(--c-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 680px;
}

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

.hero-desc {
    color: var(--c-text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border2);
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.hero-promo-label {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 206, 28, 0.12);
    border: 2px dashed rgba(255, 206, 28, 0.5);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
}

.promo-code-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.12em;
}

.promo-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    padding: 4px;
    transition: color var(--trans);
}

.promo-copy-btn:hover {
    color: var(--c-accent);
}

.promo-copy-btn.copied {
    color: #4ade80;
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--c-border);
}

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

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

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

/* ========== MAIN CONTENT AREA ========== */
.main-wrap {
    flex: 1;
    padding: 48px 0 60px;
}

/* ========== GENERAL CARD ========== */
.card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.card--accent {
    border-color: var(--c-border2);
}

/* ========== INFO TABLE ========== */
.info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.info-table thead tr {
    background: rgba(255, 255, 255, 0.05);
}

.info-table th {
    padding: 13px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-bottom: 1px solid var(--c-border);
}

.info-table td {
    padding: 13px 16px;
    font-size: 14px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
    text-align: left;
}

.info-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

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

.info-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.info-table .row-icon {
    color: var(--c-accent);
    flex-shrink: 0;
}

.info-table .row-value {
    color: #fff;
    font-weight: 500;
}

.info-table .badge-green {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.info-table .badge-yellow {
    display: inline-block;
    background: rgba(255, 206, 28, 0.15);
    color: var(--c-accent);
    border: 1px solid rgba(255, 206, 28, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== PAYMENTS TABLE ========== */
.payments-table {
    min-width: 660px;
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
}

.pm-logo-icon {
    width: 40px;
    height: 26px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ========== SCREENSHOTS ========== */
.screenshots-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1 1 calc(25% - 14px);
    min-width: 220px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--c-border);
    transition: transform var(--trans), box-shadow var(--trans);
}

.screenshot-item:hover {
    transform: scale(1.025);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

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

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 80, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--trans);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay svg {
    color: #fff;
}

/* ========== SCREENSHOTS SLIDER (mobile) ========== */
.screenshots-slider-wrap {
    display: none;
    overflow: hidden;
    position: relative;
}

.screenshots-slider {
    display: flex;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.screenshots-slider .screenshot-slide {
    flex: 0 0 82vw;
    max-width: 320px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.screenshots-slider .screenshot-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    border: none;
    cursor: pointer;
    transition: background var(--trans);
    padding: 0;
}

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

/* ========== DEMO GAME ========== */
.demo-game-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.demo-game-frame-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    background: #000;
    border: 1px solid var(--c-border);
    aspect-ratio: 16/9;
}

.demo-game-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.demo-cta-text {
    color: var(--c-text-muted);
    font-size: 14px;
}

/* ========== REVIEW CONTENT BLOCK ========== */
.review-content {
    line-height: 1.75;
    color: var(--c-text);
    font-size: 15px;
}

.review-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
}

.review-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0d8ff;
    margin: 20px 0 8px;
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #c8beee;
    margin: 16px 0 6px;
}

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

.review-content ul, .review-content ol {
    margin: 10px 0 16px 22px;
}

.review-content ul {
    list-style: disc;
}

.review-content ol {
    list-style: decimal;
}

.review-content li {
    margin-bottom: 6px;
    padding-left: 4px;
}

.review-content a {
    color: var(--c-btn-secondary);
}

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

.review-content strong {
    color: #fff;
    font-weight: 600;
}

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

.review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(255, 206, 28, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
}

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

.review-content table th,
.review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px;
}

.review-content table th {
    background: rgba(255, 255, 255, 0.07);
    font-weight: 600;
    color: #fff;
}

.review-content table td {
    color: var(--c-text);
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 12px 0;
    max-width: 100%;
}

.author-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-top: 24px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--c-border2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.author-bio {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.author-links a {
    font-size: 12px;
    color: var(--c-btn-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* ========== REGISTER STEPS ========== */
.steps-table {
    width: 100%;
    border-collapse: collapse;
}

.steps-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}

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

.steps-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    color: #1a1144;
    font-weight: 900;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-num-cell {
    width: 56px;
}

.step-title {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.step-desc {
    color: var(--c-text-muted);
    font-size: 13px;
}

/* ========== RESPONSIBLE GAMBLING ========== */
.rg-block {
    background: linear-gradient(135deg, #1a1144 0%, #2a1e5a 100%);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-bottom: 28px;
}

.rg-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rg-title svg {
    color: #4ade80;
}

.rg-desc {
    color: var(--c-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.rg-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: background var(--trans);
}

.rg-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.age-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 16px;
    background: rgba(255, 206, 28, 0.08);
    border: 1px solid rgba(255, 206, 28, 0.2);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: 13px;
}

.age-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #1a1144;
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========== REVIEWS ========== */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.review-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 240px;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: transform var(--trans), box-shadow var(--trans);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--c-border2);
    background: var(--c-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--c-accent);
}

.review-name {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.review-date {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.review-stars svg {
    color: var(--c-accent);
}

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

.review-form-wrap {
    margin-top: 32px;
}

.review-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 540px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group input, .form-group textarea {
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: border-color var(--trans);
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--c-btn-secondary);
}

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

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--c-text-muted);
}

.form-success {
    display: none;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #4ade80;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
    gap: 10px;
}

.form-success.show {
    display: flex;
}

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

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

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

.footer-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 14px;
}

.footer-tagline {
    color: var(--c-text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
}

.footer-country .country-flag {
    font-size: 22px;
}

.footer-col-title {
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav ul li a {
    font-size: 13px;
    color: var(--c-text-muted);
}

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

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

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

.footer-social a:hover {
    background: var(--c-btn-secondary);
    color: #fff;
}

.footer-email {
    font-size: 13px;
    color: var(--c-btn-secondary);
}

.footer-email:hover {
    color: var(--c-accent);
}

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

.footer-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    min-width: 60px;
    text-align: center;
}

.footer-legal {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
}

.footer-legal a {
    color: var(--c-btn-secondary);
}

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

.footer-copyright {
    margin-top: 12px;
    font-size: 12px;
    color: var(--c-text-muted);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 18px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 7px;
    font-size: 11px;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.trust-badge svg {
    flex-shrink: 0;
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.provider-badge {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-muted);
}

/* ========== PROMO WIDGET ========== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--c-header-dark);
    border-top: 2px solid var(--c-border2);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    animation: slideUpWidget 0.5s ease 1.5s forwards;
}

@keyframes slideUpWidget {
    to {
        transform: translateY(0);
    }
}

.promo-widget-text {
    font-size: 13px;
    color: var(--c-text-muted);
}

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

.promo-widget-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 206, 28, 0.1);
    border: 1px dashed rgba(255, 206, 28, 0.4);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
}

.promo-widget-code span {
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.1em;
    font-size: 14px;
}

.widget-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    padding: 2px;
}

.widget-copy-btn:hover {
    color: var(--c-accent);
}

.promo-widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.promo-widget-close:hover {
    color: #fff;
}

/* ========== FAQ ========== */
.faq-item {
    border-bottom: 1px solid var(--c-border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    gap: 12px;
}

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

.faq-arrow {
    flex-shrink: 0;
    transition: transform var(--trans);
}

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

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-a-inner {
    padding: 0 0 16px;
    color: var(--c-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 6, 40, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

/* ========== INFO PAGE ========== */
.info-page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 16px;
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.info-page-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0d8ff;
    margin: 22px 0 10px;
}

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

.info-page-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}

.info-page-content ul li {
    color: var(--c-text-muted);
    margin-bottom: 6px;
    font-size: 15px;
}

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

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

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 68px;
    right: 20px;
    z-index: 800;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-header);
    border: 1px solid var(--c-border2);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--c-btn-secondary);
    color: #fff;
}

/* ========== WP FAKE ELEMENTS ========== */
.wp-block-group {
    display: block;
}

.wp-caption {
    display: block;
}

.entry-content {
    display: block;
}

.wp-element-caption {
    display: none;
    visibility: hidden;
}

#wpadminbar {
    display: none;
}

.elementor-section {
    display: block;
}

.yoast-seo-hidden {
    display: none;
}

.wp-block-separator {
    display: none;
}

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

.alignnone {
    margin: 0;
}

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

.page-template-default {
    display: block;
}

.postid-hidden {
    display: none;
}

.single-casino-review {
    display: block;
}

/* ========== UTILITY ========== */
.text-center {
    text-align: center;
}

.mt1 {
    margin-top: 8px;
}

.mb1 {
    margin-bottom: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mb2 {
    margin-bottom: 16px;
}

.mt3 {
    margin-top: 24px;
}

.mb3 {
    margin-bottom: 24px;
}

.d-flex {
    display: flex;
}

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

.gap1 {
    gap: 8px;
}

.gap2 {
    gap: 16px;
}

.fw-bold {
    font-weight: 700;
}

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

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

.w-100 {
    width: 100%;
}

.hidden {
    display: none !important;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

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

    .header-online {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .screenshots-grid {
        display: none;
    }

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

    .review-card {
        flex: 1 1 calc(50% - 16px);
    }

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

@media (max-width: 640px) {
    .hero-content {
        padding: 40px 16px;
    }

    .hero-stats {
        gap: 16px;
    }

    .card {
        padding: 20px 14px;
    }

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

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

    .promo-widget {
        padding: 10px 12px;
    }

    .demo-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-card {
        flex-direction: column;
    }

    .rg-block {
        padding: 22px 16px;
    }

    .section-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 400px) {
    .header-buttons .btn--sm {
        padding: 6px 10px;
        font-size: 12px;
    }
}
