:root {
    --clr-primary: #ffdc41;
    --clr-secondary: #4172c1;
    --clr-header: #463195;
    --clr-bg: #2c1753;
    --clr-bg-card: #3a2266;
    --clr-bg-light: #3d2570;
    --clr-text: #e8e0f7;
    --clr-text-muted: #b8a8d8;
    --clr-border: rgba(255,255,255,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.35);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.25);
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--clr-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary); }

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

.xw9f2 { display: flex; flex-wrap: wrap; }
.k3r7p { position: relative; overflow: hidden; }
.m8q1j { opacity: 0; animation: fadeInUp 0.5s ease forwards; }
.v2n6l { background: linear-gradient(135deg, #5a3fa8 0%, #2c1753 100%); }
.h4t9b { border-radius: var(--radius); padding: 1.5rem; }
.r5e0x { display: grid; gap: 1rem; }
.p7c2k { transition: transform 0.3s ease, box-shadow 0.3s ease; }

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,220,65,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,220,65,0); }
}

@keyframes countUp {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

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

.site-header {
    background: var(--clr-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;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

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

.logo-placeholder {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-placeholder span { color: #fff; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--clr-primary);
    background: rgba(255,255,255,0.08);
}

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

.online-count {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.3;
}

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

.btn-login:hover {
    background: #3562b0;
    color: #fff;
    transform: translateY(-1px);
}

.btn-register {
    background: var(--clr-primary);
    color: #1a0e3a;
    animation: pulseGlow 3s infinite;
}

.btn-register:hover {
    background: #ffe566;
    color: #1a0e3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,220,65,0.5);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.btn-play {
    background: var(--clr-primary);
    color: #1a0e3a;
    font-weight: 700;
}

.btn-play:hover {
    background: #ffe566;
    color: #1a0e3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,220,65,0.45);
}

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

.btn-secondary:hover {
    background: #3562b0;
    color: #fff;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--clr-primary);
    color: #1a0e3a;
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: #3b2880;
    border-top: 1px solid var(--clr-border);
}

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

.mobile-menu a {
    color: rgba(255,255,255,0.9);
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all var(--transition);
    border-bottom: 1px solid var(--clr-border);
}

.mobile-menu a:hover { color: var(--clr-primary); background: rgba(255,255,255,0.05); }

.main-content { flex: 1; }

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

.section { padding: 3rem 0; }
.section-sm { padding: 1.5rem 0; }
.section-lg { padding: 4.5rem 0; }

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-title span { color: var(--clr-primary); }

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 640px;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3b2169 0%, #1e0e42 60%, #2c1753 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/lalabet-banner.png') center/cover no-repeat;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(44,23,83,0.95) 40%, rgba(44,23,83,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,220,65,0.15);
    border: 1px solid rgba(255,220,65,0.4);
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.hero h1 em { color: var(--clr-primary); font-style: normal; }

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

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    display: block;
}

.hero-meta-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumbs {
    padding: 0.75rem 0;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

.breadcrumbs-inner a { color: var(--clr-text-muted); }
.breadcrumbs-inner a:hover { color: var(--clr-primary); }
.breadcrumbs-inner .sep { opacity: 0.5; }
.breadcrumbs-inner .current { color: var(--clr-primary); font-weight: 500; }

.card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.toc-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.35rem;
}

.toc-list li a {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.toc-list li a::before { content: '→'; color: var(--clr-secondary); font-size: 0.8rem; }
.toc-list li a:hover { color: var(--clr-primary); background: rgba(255,255,255,0.05); }

.info-table-wrap { overflow-x: auto; margin-bottom: 2rem; }

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.info-table th,
.info-table td {
    padding: 0.8rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
}

.info-table th {
    background: rgba(70,49,149,0.5);
    color: var(--clr-primary);
    font-weight: 600;
    width: 42%;
}

.info-table td { color: var(--clr-text); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: rgba(0,0,0,0.1); }

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.pros-block, .cons-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.4rem;
}

.pros-block { border-top: 3px solid #4ade80; }
.cons-block { border-top: 3px solid #f87171; }

.pc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-block .pc-title { color: #4ade80; }
.cons-block .pc-title { color: #f87171; }

.pc-list { list-style: none; }
.pc-list li {
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.pc-list li:last-child { border-bottom: none; }

.pros-block .pc-list li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; }
.cons-block .pc-list li::before { content: '✗'; color: #f87171; font-weight: 700; flex-shrink: 0; }

.jackpots-block {
    background: linear-gradient(135deg, #3b2169 0%, #1e0e42 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(255,220,65,0.25);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.jackpots-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.jackpot-item {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,220,65,0.2);
    padding: 1.2rem;
}

.jackpot-name {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.jackpot-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-variant-numeric: tabular-nums;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.tournament-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.4rem;
    transition: transform var(--transition);
}

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

.tournament-badge {
    display: inline-block;
    background: rgba(65,114,193,0.2);
    border: 1px solid rgba(65,114,193,0.4);
    color: var(--clr-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tournament-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.tournament-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tournament-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tournament-prize {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.countdown {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.countdown-unit {
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
    text-align: center;
    min-width: 36px;
}

.countdown-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.6rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

.countdown-sep { color: var(--clr-primary); font-weight: 700; margin-top: -4px; }

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    border-top: 3px solid var(--clr-primary);
    padding: 1.4rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.bonus-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.bonus-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 0.6rem;
}

.bonus-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bonus-conditions {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    opacity: 0.7;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.slot-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: transform var(--transition);
    cursor: pointer;
}

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

.slot-thumb {
    background: linear-gradient(135deg, #463195, #2c1753);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.slot-info {
    padding: 0.85rem;
}

.slot-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-provider {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.6rem;
}

.slot-card .btn {
    width: 100%;
    font-size: 0.78rem;
    padding: 0.4rem 0.5rem;
}

.content-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-block h2 { font-size: 1.35rem; color: #fff; margin-bottom: 0.75rem; margin-top: 1.5rem; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 1.1rem; color: var(--clr-primary); margin-bottom: 0.6rem; margin-top: 1.2rem; }
.content-block p { font-size: 0.925rem; color: var(--clr-text-muted); margin-bottom: 0.85rem; line-height: 1.75; }
.content-block ul, .content-block ol { padding-left: 1.4rem; margin-bottom: 0.85rem; }
.content-block li { font-size: 0.925rem; color: var(--clr-text-muted); margin-bottom: 0.4rem; line-height: 1.65; }
.content-block table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.content-block table th { background: rgba(70,49,149,0.4); color: var(--clr-primary); padding: 0.6rem 0.9rem; text-align: left; border: 1px solid var(--clr-border); }
.content-block table td { padding: 0.6rem 0.9rem; border: 1px solid var(--clr-border); color: var(--clr-text-muted); }
.content-block strong { color: #fff; }
.content-block a { color: var(--clr-secondary); }

.faq-block { margin-bottom: 2rem; }

.faq-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: #fff;
    font-size: 0.925rem;
    font-weight: 600;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-question.open { background: rgba(70,49,149,0.3); color: var(--clr-primary); }

.faq-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0.75rem 1.25rem 1.1rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--clr-border);
}

.faq-answer.open { display: block; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.4rem;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-header));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

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

.review-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }

.review-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.review-form {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.form-group { margin-bottom: 1rem; }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-secondary);
    background: rgba(0,0,0,0.3);
}

.form-control::placeholder { color: rgba(255,255,255,0.35); }

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

.form-success {
    display: none;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.3);
    color: #4ade80;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.author-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 3px solid var(--clr-primary);
}

.author-info { flex: 1; min-width: 0; }

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

.author-role {
    font-size: 0.8rem;
    color: var(--clr-primary);
    margin-bottom: 0.6rem;
}

.author-bio {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.author-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--clr-secondary);
    border: 1px solid rgba(65,114,193,0.3);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    transition: all var(--transition);
}

.author-link:hover {
    background: var(--clr-secondary);
    color: #fff;
}

.app-info-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.app-download-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.1rem;
    color: #fff;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.app-btn:hover {
    background: var(--clr-secondary);
    color: #fff;
    border-color: var(--clr-secondary);
    transform: translateY(-2px);
}

.app-btn-icon { font-size: 1.5rem; }

.app-btn-text-sm { font-size: 0.65rem; color: rgba(255,255,255,0.6); display: block; }
.app-btn-text-main { font-weight: 600; display: block; }

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.provider-badge {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.provider-badge:hover {
    border-color: var(--clr-secondary);
    color: var(--clr-secondary);
}

.promo-code-block {
    background: linear-gradient(135deg, rgba(70,49,149,0.6) 0%, rgba(44,23,83,0.6) 100%);
    border: 2px dashed rgba(255,220,65,0.5);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.promo-code-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.promo-code-value {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,220,65,0.4);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
}

.promo-code-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: 3px;
}


.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.payment-logo {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.advantage-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition);
}

.advantage-item:hover { transform: translateY(-3px); }

.advantage-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.advantage-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.advantage-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; }

.slot-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    padding: 1rem;
    text-align: center;
}

.feature-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.feature-name { font-size: 0.82rem; font-weight: 600; color: var(--clr-text); }

.withdrawal-params {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.param-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.25rem;
    text-align: center;
}

.param-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    display: block;
    margin-bottom: 0.3rem;
}

.param-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steps-block { margin-bottom: 2rem; }

.step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.step-content { flex: 1; }
.step-title { font-weight: 600; color: #fff; font-size: 0.9rem; margin-bottom: 0.25rem; }
.step-desc { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.6; }

.info-notice {
    background: rgba(65,114,193,0.15);
    border: 1px solid rgba(65,114,193,0.4);
    border-left: 4px solid var(--clr-secondary);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.info-notice strong { color: var(--clr-secondary); }

.rating-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rating-score {
    text-align: center;
    flex-shrink: 0;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    display: block;
}

.rating-max { font-size: 1rem; color: var(--clr-text-muted); }
.rating-stars-lg { font-size: 1.3rem; color: #fbbf24; margin: 0.35rem 0; }
.rating-count { font-size: 0.8rem; color: var(--clr-text-muted); }

.rating-categories { flex: 1; min-width: 220px; }

.rating-cat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.rating-cat-label { font-size: 0.82rem; color: var(--clr-text-muted); width: 120px; flex-shrink: 0; }

.rating-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-primary));
    border-radius: 3px;
}

.rating-cat-score { font-size: 0.82rem; color: var(--clr-primary); font-weight: 700; width: 28px; text-align: right; }

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal-box {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--clr-border);
}

.modal-title { font-weight: 700; color: #fff; }

.modal-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color var(--transition);
}

.modal-close:hover { color: #fff; }

.modal-body { flex: 1; overflow: auto; }

.modal-body iframe {
    width: 100%;
    height: 480px;
    border: none;
}

.modal-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.site-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-placeholder { margin-bottom: 0.75rem; }

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-primary); }

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.footer-provider {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
}

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

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 700px;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-payment-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--clr-header) 0%, #5a3fa8 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.widget-text {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.widget-bonus {
    color: var(--clr-primary);
    font-weight: 700;
}

.widget-actions { display: flex; gap: 0.5rem; align-items: center; }

.widget-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition);
    padding: 0.25rem;
}

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

.technical-content {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 2rem;
    margin: 2rem 0;
}

.technical-content h2 { font-size: 1.25rem; color: #fff; margin: 1.5rem 0 0.6rem; }
.technical-content h2:first-child { margin-top: 0; }
.technical-content h3 { font-size: 1rem; color: var(--clr-primary); margin: 1rem 0 0.4rem; }
.technical-content p { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 0.75rem; line-height: 1.75; }
.technical-content ul, .technical-content ol { padding-left: 1.4rem; margin-bottom: 0.75rem; }
.technical-content li { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 0.35rem; line-height: 1.65; }

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.alternative-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 1.2rem;
    text-align: center;
    transition: transform var(--transition);
}

.alternative-card:hover { transform: translateY(-3px); }
.alternative-name { font-weight: 700; color: #fff; margin-bottom: 0.3rem; font-size: 0.95rem; }
.alternative-bonus { color: var(--clr-primary); font-size: 0.85rem; margin-bottom: 0.75rem; }

.slot-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.slot-category-btn {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.slot-category-btn:hover,
.slot-category-btn.active {
    background: var(--clr-secondary);
    color: #fff;
    border-color: var(--clr-secondary);
}

.demo-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    margin-bottom: 2rem;
}

.demo-block iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.demo-header {
    padding: 0.85rem 1.25rem;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.demo-title { font-weight: 600; color: #fff; font-size: 0.9rem; }

.speed-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.speed-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.speed-table th { background: rgba(70,49,149,0.5); color: var(--clr-primary); padding: 0.7rem 1rem; text-align: left; border: 1px solid var(--clr-border); font-size: 0.875rem; }
.speed-table td { padding: 0.7rem 1rem; border: 1px solid var(--clr-border); color: var(--clr-text-muted); font-size: 0.875rem; }
.speed-table tr:nth-child(even) td { background: rgba(0,0,0,0.1); }
.speed-badge { display: inline-block; padding: 0.2rem 0.55rem; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
.speed-fast { background: rgba(74,222,128,0.15); color: #4ade80; }
.speed-medium { background: rgba(251,191,36,0.15); color: #fbbf24; }
.speed-slow { background: rgba(248,113,113,0.15); color: #f87171; }

.wp-emoji-link { display: none; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.skip-link { background: #f1f1f1; color: #21759b; display: block; font-size: 14px; font-weight: 700; left: -9999em; padding: 15px 23px 14px; position: absolute; text-decoration: none; top: -9999em; }
.wp-caption { max-width: 100%; }
.wp-block-image { margin: 0; }
.alignnone, .alignleft, .alignright, .aligncenter { margin: 5px 20px 20px 0; }
.wp-post-image { max-width: 100%; }

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { min-height: 400px; }
    .hero h1 { font-size: 1.75rem; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .author-block { flex-direction: column; }
    .rating-block { flex-direction: column; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .bottom-widget { flex-direction: column; gap: 0.5rem; text-align: center; }
    .modal-body iframe { height: 320px; }
    .header-inner { padding: 0.6rem 1rem; }
    .tournaments-grid { grid-template-columns: 1fr; }
    .hero-meta { gap: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 0.875rem; }
    .section { padding: 2rem 0; }
    .bonuses-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .app-download-btns { flex-direction: column; }
}

/* Override Bootstrap (loaded after this file): keep the dark site background */
html body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
}

/* --- Promocode: redirect button instead of copy, code is not selectable --- */
.promo-code-text {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.promo-code-btn {
    display: inline-flex;
    align-items: center;
    background: var(--clr-primary);
    color: #1a0e3a;
    border: 1px solid rgba(255,220,65,0.4);
    border-radius: 6px;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all var(--transition);
}

.promo-code-btn:hover {
    background: #ffe566;
    color: #1a0e3a;
    transform: translateY(-1px);
}

/* --- Images: logo, author, game thumbs --- */
.footer-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-logo img { height: 44px; width: auto; }

.author-avatar { overflow: hidden; padding: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slot-thumb { padding: 0; }
.slot-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Mobile header: CTA buttons live in the burger menu --- */
.mobile-menu-actions { display: none; }

@media (max-width: 1024px) {
    .header-inner { justify-content: space-between; }
    .header-actions { margin-left: auto; gap: 0; }
    .header-actions .online-count,
    .header-actions .btn-login,
    .header-actions .btn-register { display: none; }
    .burger { display: flex; margin-left: auto; }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--clr-border);
    }
    .mobile-menu-actions .btn { width: 100%; justify-content: center; border-bottom: none; }
    .mobile-menu-actions .online-count { justify-content: center; padding-top: 0.25rem; }
}

/* --- Tables from page content must not push the page sideways on mobile --- */
.content-block table,
.technical-content table {
    max-width: 100%;
}

img, video, iframe { max-width: 100%; }

@media (max-width: 768px) {
    /* The table itself becomes the scroll container: it scrolls, the page does not */
    .content-block table,
    .technical-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content-block table th,
    .content-block table td,
    .technical-content table th,
    .technical-content table td {
        font-size: 0.82rem;
        padding: 0.5rem 0.6rem;
        min-width: 7.5rem;
    }
}
