@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');

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

:root {
    --color-bg: #171B24;
    --color-header: #1E2430;
    --color-btn-primary: #1E2430;
    --color-btn-reg: #B12509;
    --color-text: #e8eaf0;
    --color-text-muted: #9aa0b0;
    --color-accent: #c0392b;
    --color-accent-light: #e74c3c;
    --color-gold: #f0c040;
    --color-border: #2a3040;
    --color-card: #1e2535;
    --color-card2: #242d3e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-main: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
    --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-light); text-decoration: none; }
a:hover { color: var(--color-gold); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.3; color: #fff; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.text-center { text-align: center; }
.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
.p05 { padding: 4px; }
.w-full { width: 100%; }

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

.site-header .container {
    padding-top: 0;
    padding-bottom: 0;
}

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

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: fit-content;
}

.logo img {
    height: 30px;
    width: auto;
    border-radius: var(--radius-sm);
}

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

.header-nav a {
    color: var(--color-text-muted);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
}

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

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

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

.header-online .dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

.burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

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

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.4); text-decoration: none; }
.btn:active { transform: scale(0.97); }

.btn--signin {
    background: var(--color-btn-primary);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn--signin:hover { background: #2a3347; color: #fff; }

.btn--signup {
    background: var(--color-btn-reg);
    color: #fff;
}

.btn--signup:hover { background: #d42e0e; color: #fff; }

.btn--bonus {
    background: var(--color-gold);
    color: #1a1a1a;
    font-weight: 800;
}

.btn--bonus:hover { background: #f5d060; color: #1a1a1a; }

.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn--md { padding: 9px 18px; font-size: 13px; }
.btn--sm { padding: 7px 14px; font-size: 12px; }

.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-header);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/frank-casino-hero.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23,27,36,0.95) 40%, rgba(23,27,36,0.3) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(177,37,9,0.25);
    border: 1px solid var(--color-btn-reg);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #ff7a5c;
    margin-bottom: 16px;
}

.breadcrumbs {
    padding: 12px 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-gold); }
.breadcrumbs span { margin: 0 6px; }

.section { padding: 40px 0; }

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--color-btn-reg);
    border-radius: 2px;
}

.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform .2s, box-shadow .2s;
}

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

.card2 {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.toc {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 32px;
}

.toc h3 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #fff;
}

.toc ol {
    padding-left: 18px;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    color: var(--color-text-muted);
    font-size: 14px;
    transition: color .2s;
}

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

.pros-cons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.pros-cons-col {
    flex: 1;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px;
}

.pros-cons-col.pros { border-top: 3px solid #2ecc71; }
.pros-cons-col.cons { border-top: 3px solid var(--color-btn-reg); }

.pros-cons-col h3 {
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-cons-col ul { list-style: none; }
.pros-cons-col ul li {
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.pros-cons-col ul li:last-child { border-bottom: none; }

.pros ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 800;
}

.cons ul li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--color-accent-light);
    font-weight: 800;
}

.jackpots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.jackpot-card {
    background: linear-gradient(135deg, #1e2535 0%, #2a1f3a 100%);
    border: 1px solid #3d2e55;
    border-radius: var(--radius-md);
    padding: 22px 20px;
    flex: 1;
    min-width: 160px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.jackpot-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(90,40,120,0.35); }

.jackpot-card .jk-name {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-family: var(--font-main);
    font-weight: 600;
}

.jackpot-card .jk-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-gold);
    font-family: var(--font-main);
    text-shadow: 0 0 20px rgba(240,192,64,0.4);
}

.jackpot-card .jk-label {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.game-card {
    width: calc(16.666% - 14px);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}

.game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.game-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23,27,36,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .2s;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-info {
    padding: 10px 12px;
}

.game-card-info .game-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-info .game-provider {
    font-size: 11px;
    color: var(--color-text-muted);
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border);
}

.modal-header h3 { font-size: 16px; color: #fff; }

.modal-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.modal-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

.modal-game-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.modal-game-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-footer {
    padding: 14px 20px;
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.modal-footer p { font-size: 13px; color: var(--color-text-muted); }

.content-area {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.content-area h2 { font-size: 22px; margin: 24px 0 12px; color: #fff; }
.content-area h3 { font-size: 18px; margin: 20px 0 10px; color: #e0e3ec; }
.content-area h4 { font-size: 16px; margin: 16px 0 8px; color: #c8ccdc; }
.content-area p { margin-bottom: 14px; color: var(--color-text-muted); }
.content-area ul, .content-area ol { padding-left: 22px; margin-bottom: 14px; }
.content-area li { margin-bottom: 6px; color: var(--color-text-muted); }
.content-area a { color: var(--color-accent-light); }
.content-area a:hover { color: var(--color-gold); }
.content-area strong { color: #fff; }
.content-area em { color: var(--color-text); font-style: italic; }
.content-area blockquote {
    border-left: 3px solid var(--color-btn-reg);
    padding: 10px 18px;
    background: rgba(255,255,255,0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--color-text-muted);
    font-style: italic;
}
.content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.content-area table th,
.content-area table td {
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
}
.content-area table th { background: var(--color-header); color: #fff; font-family: var(--font-main); }
.content-area table tr:nth-child(even) { background: rgba(255,255,255,0.02); }

.faq-block { margin-bottom: 32px; }

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

.faq-item.active { border-color: rgba(177,37,9,0.5); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    user-select: none;
    transition: background .2s;
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--color-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform .3s, background .2s, border-color .2s;
    color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--color-btn-reg);
    border-color: var(--color-btn-reg);
    color: #fff;
}

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

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

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.author-block img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-btn-reg);
}

.author-info h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}

.author-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 10px;
}

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

.author-links a {
    font-size: 12px;
    background: rgba(255,255,255,0.07);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--color-text-muted);
    transition: background .2s, color .2s;
}

.author-links a:hover { background: var(--color-btn-reg); color: #fff; }

.site-footer {
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    padding: 40px 0 20px;
    margin-top: auto;
}

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

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

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

.footer-col a {
    display: block;
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 8px;
    transition: color .2s;
}

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

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

.footer-logo-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    font-family: var(--font-main);
    letter-spacing: 0.03em;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 700px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-legal-links a {
    color: var(--color-text-muted);
    font-size: 12px;
}

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

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #1E2430 0%, #2c1a14 100%);
    border-top: 2px solid var(--color-btn-reg);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform .3s;
}

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

.sticky-widget p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-main);
}

.sticky-widget span { color: var(--color-gold); }

.sticky-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color .2s;
}

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

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    overflow-x: auto;
}

.bonus-table th, .bonus-table td {
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}

.bonus-table th {
    background: var(--color-header);
    font-family: var(--font-main);
    font-weight: 700;
    color: #fff;
}

.bonus-table td { color: var(--color-text-muted); }
.bonus-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.bonus-table td:first-child { color: #fff; font-weight: 600; }

.get-bonus-block {
    background: linear-gradient(135deg, var(--color-btn-reg) 0%, #8B1A07 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    margin-bottom: 32px;
}

.get-bonus-block h2 { color: #fff; margin-bottom: 10px; font-size: 26px; }
.get-bonus-block p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 16px; }

.promo-accent {
    background: var(--color-card);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.promo-accent h2 { color: var(--color-gold); font-size: 22px; margin-bottom: 8px; }
.promo-accent p { color: var(--color-text-muted); margin-bottom: 16px; }

.promo-code-display {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-header);
    border: 2px dashed var(--color-gold);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 16px;
}

.promo-code-display:hover { background: rgba(240,192,64,0.1); }

.promo-code-display span {
    font-family: monospace;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.promo-code-display small {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonuses-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.bonus-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .2s;
}

.bonus-card:hover { transform: translateY(-3px); }

.bonus-card-img {
    height: 140px;
    background: linear-gradient(135deg, var(--color-header) 0%, #2a1228 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.bonus-card-body { padding: 18px; }
.bonus-card-body h3 { font-size: 16px; margin-bottom: 6px; color: #fff; }
.bonus-card-body p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 14px; }
.bonus-card-amount { font-size: 22px; font-weight: 800; color: var(--color-gold); margin-bottom: 12px; }

.reg-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.reg-method-card {
    flex: 1;
    min-width: 150px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}

.reg-method-card:hover { border-color: var(--color-btn-reg); transform: translateY(-2px); }
.reg-method-card .rm-icon { font-size: 28px; margin-bottom: 10px; }
.reg-method-card h4 { font-size: 14px; color: #fff; margin-bottom: 6px; }
.reg-method-card p { font-size: 12px; color: var(--color-text-muted); }

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.adv-card {
    flex: 1;
    min-width: 180px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.adv-card .adv-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(177,37,9,0.15);
    border: 1px solid rgba(177,37,9,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.adv-card h4 { font-size: 14px; color: #fff; margin-bottom: 4px; }
.adv-card p { font-size: 12px; color: var(--color-text-muted); }

.casino-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.casino-info-table tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.casino-info-table tr:nth-child(odd) { background: var(--color-card); }

.casino-info-table td {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.casino-info-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 600;
    width: 40%;
    font-family: var(--font-main);
    font-size: 13px;
}

.casino-info-table td:last-child { color: #fff; }

.mirrors-table-wrap { overflow-x: auto; margin-bottom: 24px; }

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.mirrors-table th, .mirrors-table td {
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
}

.mirrors-table th { background: var(--color-header); color: #fff; font-family: var(--font-main); }
.mirrors-table td { color: var(--color-text-muted); }
.mirrors-table td:first-child { color: var(--color-accent-light); font-weight: 600; }
.mirrors-table .status-ok { color: #2ecc71; font-weight: 700; }

.mirrors-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.mirrors-time span { color: #fff; font-weight: 600; }

.safety-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.safety-card {
    flex: 1;
    min-width: 200px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-left: 3px solid #2ecc71;
    border-radius: var(--radius-md);
    padding: 18px;
}

.safety-card h4 { font-size: 14px; color: #fff; margin-bottom: 6px; }
.safety-card p { font-size: 13px; color: var(--color-text-muted); }

.slots-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.slot-feature-card {
    flex: 1;
    min-width: 130px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}

.slot-feature-card:hover { border-color: var(--color-gold); transform: translateY(-2px); }
.slot-feature-card .sf-icon { font-size: 28px; margin-bottom: 8px; }
.slot-feature-card h4 { font-size: 14px; color: #fff; margin-bottom: 4px; }
.slot-feature-card p { font-size: 12px; color: var(--color-text-muted); }

.download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    transition: border-color .2s, transform .2s, background .2s;
    text-decoration: none;
}

.dl-btn:hover { border-color: var(--color-btn-reg); background: rgba(177,37,9,0.1); transform: translateY(-2px); text-decoration: none; }
.dl-btn .dl-icon { font-size: 32px; }
.dl-btn-info h4 { font-size: 15px; color: #fff; font-family: var(--font-main); }
.dl-btn-info span { font-size: 11px; color: var(--color-text-muted); }

.app-specs {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.app-specs h3 { font-size: 16px; margin-bottom: 16px; color: #fff; }

.app-specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spec-item {
    flex: 1;
    min-width: 160px;
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.spec-item dt { font-size: 11px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.spec-item dd { font-size: 14px; color: #fff; font-weight: 600; }

.alternatives-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.alt-card {
    flex: 1;
    min-width: 180px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform .2s;
}
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.alt-card:hover { transform: translateY(-3px); }
.alt-card h4 { font-size: 15px; color: #fff; margin-bottom: 6px; }
.alt-card p { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }

.main-content { flex: 1; }

.wp-block-group { display: block; }
.entry-content { display: block; }
@media (max-width: 1024px) {
    .header-nav a:first-child {display: none;}
    .header-nav a {padding: 6px 7px;}
    .header-inner {gap: 10px;}
}
@media (max-width: 900px) {
    .header-nav { display: none; }
    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--color-header);
        padding: 12px 20px 20px;
        z-index: 999;
        border-bottom: 1px solid var(--color-border);
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    .header-nav.active a { padding: 10px 12px; font-size: 15px; }
    .burger { display: flex; }
    .header-online { display: none; }
    .games-grid .game-card { width: calc(33.333% - 11px); }
    .pros-cons { flex-direction: column; }
    .jackpots-grid { gap: 10px; }
    .jackpot-card { min-width: 120px; }
    .footer-grid { gap: 24px; }
    .hero-content { padding: 40px 0; }
    .hero-content h1 { font-size: 28px; }
}

@media (max-width: 600px) {
    .games-grid .game-card { width: calc(50% - 8px); }
    .footer-grid { flex-direction: column; gap: 20px; }
    .content-area { padding: 20px; }
    .card { padding: 16px; }
    .section { padding: 24px 0; }
    .hero { min-height: 320px; }
    .get-bonus-block { padding: 24px 16px; }
    .promo-accent { padding: 20px 16px; }
    .author-block { flex-direction: column; }
    .author-block img { margin: 0 auto; }
    .sticky-widget { flex-direction: column; gap: 8px; padding: 10px 40px 10px 16px; }
    .sticky-widget p { font-size: 13px; text-align: center; }
}
@media (max-width: 480px) {
    .header-buttons .btn--signin { display: none; }
    .content-area { padding: 16px; }
    .btn {white-space: wrap;}
}
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

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

.xb4k2m { display: block; }
.r9f1w3 { visibility: visible; }
.q7z0vn { overflow: visible; }
