:root {
    --c-header: #08173c;
    --c-header-alt: #0a1e4a;
    --c-bg: #1a316f;
    --c-bg-alt: #122455;
    --c-btn-primary: #ff4083;
    --c-btn-secondary: #ff8654;
    --c-text: #e8eaf6;
    --c-text-muted: #8fa3cc;
    --c-white: #ffffff;
    --c-gold: #f5c518;
    --c-card: #0f2050;
    --c-card-border: #1e3a7a;
    --c-success: #22c55e;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.32);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.44);
    --font-main: 'Poppins', sans-serif;
    --transition: 0.25s ease;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-white);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
}

p {
    margin-bottom: 0.85em;
}

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

.section-pad {
    padding: 60px 0;
}

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

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    color: var(--c-text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

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

.btn-primary {
    background: var(--c-btn-primary);
    color: var(--c-white);
    box-shadow: 0 4px 18px rgba(255, 64, 131, 0.38);
}

.btn-secondary {
    background: var(--c-btn-secondary);
    color: var(--c-white);
    box-shadow: 0 4px 18px rgba(255, 134, 84, 0.32);
}

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

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

.btn-lg {
    padding: 14px 34px;
    font-size: 1.05rem;
}

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

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
    padding: 0;
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.header-logo .logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: 0.03em;
}

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

.header-nav a {
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 255, 255, 0.09);
    color: var(--c-white);
}

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

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

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--c-white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--c-header);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 8px;
    overflow-y: auto;
}

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

.mobile-menu a {
    color: var(--c-text);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--c-white);
}

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/holland-hero.png') center/cover no-repeat;
    filter: brightness(0.45);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 23, 60, 0.88) 0%, rgba(26, 49, 111, 0.55) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 64, 131, 0.18);
    border: 1px solid var(--c-btn-primary);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-btn-primary);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.hero-content h1 {
    max-width: 650px;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    max-width: 520px;
    color: var(--c-text);
    margin-bottom: 28px;
    font-size: 1rem;
}

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

.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.83rem;
    font-weight: 500;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-btn-primary);
}

.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--c-card-border);
    vertical-align: middle;
}

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

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

.info-table td:first-child {
    width: 44%;
    color: var(--c-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-table td:last-child {
    font-weight: 600;
    color: var(--c-white);
}

.info-table td svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-btn-secondary);
}

.info-table .badge-ok {
    background: rgba(34, 197, 94, 0.15);
    color: var(--c-success);
    border-radius: 5px;
    padding: 2px 9px;
    font-size: 0.8rem;
}

.pay-table-wrap {
    overflow-x: auto;
}

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

.pay-table th {
    background: var(--c-header);
    color: var(--c-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 13px 14px;
    text-align: left;
}

.pay-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--c-card-border);
    font-size: 0.9rem;
    vertical-align: middle;
}

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

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

.pay-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--c-white);
}

.pay-logo svg {
    width: 28px;
    height: 28px;
}

.winners-block {
    background: var(--c-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-header {
    background: var(--c-header);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.winners-header h3 {
    color: var(--c-white);
    margin: 0;
}

.winners-list {
    max-height: 480px;
    overflow-y: auto;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--c-card-border);
    transition: background var(--transition);
}

.winner-row:last-child {
    border-bottom: none;
}

.winner-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.winner-rank {
    width: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    flex-shrink: 0;
}

.winner-rank.top-1 {
    color: #f5c518;
}

.winner-rank.top-2 {
    color: #c0c0c0;
}

.winner-rank.top-3 {
    color: #cd7f32;
}

.winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-secondary), var(--c-btn-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--c-white);
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
}

.winner-nick {
    font-weight: 600;
    color: var(--c-white);
    font-size: 0.9rem;
}

.winner-game {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.winner-amount {
    font-weight: 700;
    color: var(--c-success);
    font-size: 0.95rem;
}

.tournaments-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tournament-card {
    flex: 1 1 280px;
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-primary), var(--c-btn-secondary));
}

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

.t-badge {
    display: inline-block;
    background: rgba(255, 64, 131, 0.15);
    color: var(--c-btn-primary);
    border-radius: 5px;
    padding: 2px 9px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.t-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-white);
}

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

.t-prize {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-gold);
}

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

.t-timer .timer-val {
    font-weight: 700;
    color: var(--c-white);
}

.t-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.app-info {
    flex: 1 1 380px;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.app-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-card-border);
    font-size: 0.9rem;
}

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

.app-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 500;
    width: 45%;
}

.app-table td:last-child {
    color: var(--c-white);
    font-weight: 600;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    color: var(--c-white);
    font-family: var(--font-main);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.app-btn:hover {
    background: var(--c-btn-primary);
    border-color: var(--c-btn-primary);
    color: var(--c-white);
    transform: translateY(-2px);
}

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

.app-btn-text {
    text-align: left;
}

.app-btn-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--c-text-muted);
}

.app-btn-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
}

.app-visual {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 200px;
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: 28px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.app-mockup-screen {
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(160deg, var(--c-header), var(--c-bg-alt));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.app-rating {
    display: flex;
    gap: 3px;
}

.app-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--c-gold);
    color: var(--c-gold);
}

.slot-section-inner {
    display: flex;
    justify-content: center;
}

.slot-machine {
    background: var(--c-card);
    border: 2px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.slot-machine h3 {
    margin-bottom: 8px;
}

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

.reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px;
}

.reel {
    width: 80px;
    height: 90px;
    background: var(--c-header);
    border: 2px solid var(--c-card-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.reel.spinning {
    animation: reelSpin 0.15s steps(1) infinite;
}

@keyframes reelSpin {
    0% {
        content: '';
    }
    25% {
        opacity: .7
    }
    50% {
        opacity: .4
    }
    75% {
        opacity: .7
    }
    100% {
        opacity: 1
    }
}

.reel-inner {
    transition: transform 0.3s ease;
}

.slot-result {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.slot-win {
    color: var(--c-success);
    font-weight: 700;
    font-size: 1.05rem;
    animation: fadeIn 0.4s ease;
}

.slot-lose {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    animation: fadeIn 0.4s ease;
}

.slot-credit {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.review-block {
    background: var(--c-card);
    border-radius: var(--radius-md);
    padding: 36px 40px;
}

.author-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--c-bg-alt);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff4083, #ff8654);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-white);
}

.author-info h4 {
    color: var(--c-white);
    margin-bottom: 3px;
}

.author-info .author-role {
    font-size: 0.8rem;
    color: var(--c-btn-secondary);
    font-weight: 600;
}

.author-info .author-bio {
    font-size: 0.83rem;
    color: var(--c-text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

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

.author-links a {
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 3px 9px;
    color: var(--c-text);
}

.author-links a:hover {
    background: var(--c-btn-primary);
    color: var(--c-white);
}

.review-content {
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: var(--c-white);
    margin: 1.4em 0 0.5em;
}

.review-content h1 {
    font-size: 1.7rem;
}

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

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

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

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

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

.review-content ul, .review-content ol {
    margin: 0.6em 0 1em 1.4em;
    color: var(--c-text);
}

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

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

.review-content table th {
    background: var(--c-header);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.review-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-card-border);
    font-size: 0.9rem;
}

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

.review-content blockquote {
    border-left: 3px solid var(--c-btn-primary);
    padding: 12px 18px;
    margin: 1em 0;
    background: rgba(255, 64, 131, 0.07);
    border-radius: 0 8px 8px 0;
    color: var(--c-text-muted);
}

.review-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1em auto;
}

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

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 14px;
    transition: background var(--transition);
}

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

.faq-question h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--c-white);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--c-btn-secondary);
    transition: transform var(--transition);
}

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

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

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

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

footer {
    background: var(--c-header);
    padding: 52px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-brand {
    flex: 1 1 260px;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-top: 10px;
}

.footer-brand p {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
    line-height: 1.65;
}

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

.footer-col h4 {
    color: var(--c-white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--c-btn-secondary);
}

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

.footer-social-btn {
    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: var(--transition);
}

.footer-social-btn:hover {
    background: var(--c-btn-primary);
    color: var(--c-white);
}

.footer-social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-logos-section {
    margin: 32px 0;
}

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

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

.footer-badge {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-badge svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
}

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

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

.footer-flag svg {
    width: 24px;
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 680px;
}

.footer-legal a {
    color: var(--c-text-muted);
    text-decoration: underline;
}

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

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, var(--c-header) 0%, #0d2065 100%);
    border-top: 2px solid var(--c-btn-primary);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.sticky-widget-text {
    flex: 1;
    min-width: 0;
}

.sticky-widget-text .promo-code {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-bottom: 2px;
}

.sticky-widget-text .bonus-text {
    font-weight: 700;
    color: var(--c-white);
    font-size: 0.92rem;
}

.sticky-widget-text .bonus-text span {
    color: var(--c-btn-primary);
}

.sticky-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    padding: 2px 6px;
    flex-shrink: 0;
    transition: color var(--transition);
}

.sticky-close:hover {
    color: var(--c-white);
}

.sticky-promo {
    background: rgba(255, 255, 255, 0.09);
    border: 1px dashed var(--c-btn-secondary);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-btn-secondary);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

body.widget-hidden .sticky-widget {
    display: none;
}

body {
    padding-bottom: 70px;
}

body.widget-hidden {
    padding-bottom: 0;
}

.card-block {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-card-border), transparent);
    margin: 48px 0;
}

.swiper-wrap {
    position: relative;
    overflow: hidden;
}

.swiper-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-card-border) transparent;
}

.swiper-track::-webkit-scrollbar {
    height: 4px;
}

.swiper-track::-webkit-scrollbar-track {
    background: transparent;
}

.swiper-track::-webkit-scrollbar-thumb {
    background: var(--c-card-border);
    border-radius: 2px;
}

.swiper-track .tournament-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
}

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

.fade-in.visible {
    opacity: 1;
    transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.elementor-hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wpcf7-not-valid-tip {
    display: none;
}

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

    .burger {
        display: flex;
    }

    .online-count {
        display: none;
    }

    .info-table td:first-child {
        width: auto;
    }

    .app-section-inner {
        flex-direction: column;
    }

    .app-visual {
        display: none;
    }

    .review-block {
        padding: 22px 18px;
    }

    .slot-machine {
        padding: 24px 18px;
    }

    .footer-top {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 360px;
    }

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

    .hero-features {
        display: none;
    }

    .tournaments-grid .tournament-card {
        flex: 0 0 80vw;
    }

    .reel {
        width: 66px;
        height: 76px;
        font-size: 1.9rem;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }

    .sticky-promo {
        width: 100%;
        text-align: center;
    }

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

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