/* Sultan Casino – style.css?ver=1.7 */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #0e2f2b;
    --color-header: #222723;
    --color-btn-login: #02504b;
    --color-btn-reg: #f9c719;
    --color-btn-reg-text: #1a1200;
    --color-text: #e8f0ef;
    --color-text-muted: #9dbdb8;
    --color-accent: #02504b;
    --color-gold: #f9c719;
    --color-card-bg: #122e2a;
    --color-border: #1e4840;
    --color-table-head: #0b2421;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .22s ease;
    --font-sans: 'Inter', 'Roboto', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #ffe066;
}

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

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

/* ===== UTILITY ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

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

/* hidden WP-like elements – do not affect layout */
.wp-compat-placeholder {
    display: none !important;
}

/* ===== BUTTONS ===== */
.btn-login, .btn-reg, .btn-bonus, .btn-get, .btn-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-decoration: none !important;
}

.btn-login {
    background: var(--color-btn-login);
    color: #fff;
    padding: 9px 18px;
}

.btn-reg {
    background: var(--color-btn-reg);
    color: var(--color-btn-reg-text);
    padding: 9px 18px;
}

.btn-bonus {
    background: var(--color-btn-reg);
    color: var(--color-btn-reg-text);
    padding: 9px 22px;
    font-size: 14px;
}

.btn-get {
    background: var(--color-btn-reg);
    color: var(--color-btn-reg-text);
    padding: 12px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-dl {
    background: var(--color-btn-login);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
}

.btn-login:hover, .btn-dl:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(2, 80, 75, .5);
}

.btn-reg:hover, .btn-bonus:hover, .btn-get:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 199, 25, .4);
}

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

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

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

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

.header-nav a {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

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

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

.header-online {
    font-size: 11px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.header-online .online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #3bdd7a;
    border-radius: 50%;
    margin-right: 4px;
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 47, 43, .97);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    color: #fff;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 0;
}

.mobile-nav-overlay .close-nav {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-sul.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.55);
    z-index: 0;
}

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

.hero-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-btn-reg-text);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: clamp(26px, 5vw, 46px);
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.hero-content p {
    color: #cde8e4;
    font-size: 16px;
    margin-bottom: 28px;
}

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

.hero-btns .btn-reg {
    font-size: 15px;
    padding: 13px 32px;
    border-radius: var(--radius-md);
}

.hero-btns .btn-login {
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius-md);
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

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

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.info-table th, .info-table td {
    text-align: left;
    padding: 12px 18px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.5;
}

.info-table th {
    background: var(--color-table-head);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    width: 38%;
    white-space: nowrap;
}

.info-table td {
    color: var(--color-text);
}

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

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

.rating-stars {
    color: var(--color-gold);
    letter-spacing: 2px;
}

/* ===== CARDS (tournaments / bonuses) ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-gold);
    background: rgba(249, 199, 25, .12);
    border-radius: 99px;
    padding: 3px 10px;
    align-self: flex-start;
}

.card-title {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.card-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    flex: 1;
}

.card-prize {
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-gold);
}

.card-timer {
    font-size: 12px;
    color: var(--color-text-muted);
}

.card-timer .timer-val {
    font-family: monospace;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
}

.card-cta {
    margin-top: auto;
}

.card-cta .btn-reg, .card-cta .btn-login {
    width: 100%;
    justify-content: center;
}

/* slider on mobile */
.cards-slider {
    display: contents;
}

/* ===== APP INFO ===== */
.app-section-inner {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-table-wrap {
    flex: 1 1 340px;
    overflow-x: auto;
}

.app-dl-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.app-dl-wrap .btn-dl {
    display: flex;
    gap: 10px;
    min-width: 200px;
}

.app-dl-icon {
    width: 22px;
    height: 22px;
}

/* ===== SLOT MINI-GAME ===== */
.slot-game {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.slot-game h2 {
    font-size: 20px;
    margin-bottom: 6px;
}

.slot-game p.slot-sub {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

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

.reel {
    width: 72px;
    height: 72px;
    background: var(--color-table-head);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: transform .1s;
    user-select: none;
}

.reel.spinning {
    animation: spinReel .12s linear infinite;
}

@keyframes spinReel {
    0% {
        transform: scaleY(1)
    }
    50% {
        transform: scaleY(.3)
    }
    100% {
        transform: scaleY(1)
    }
}

.slot-btn {
    background: var(--color-btn-login);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 36px;
    cursor: pointer;
    transition: filter var(--transition), transform var(--transition);
}

.slot-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.slot-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.slot-result {
    margin-top: 20px;
    min-height: 60px;
}

.slot-win {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    animation: fadeIn .4s ease;
}

.slot-lose {
    color: var(--color-text-muted);
    font-size: 15px;
    animation: fadeIn .4s ease;
}

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

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

.faq-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    gap: 12px;
    transition: background var(--transition);
}

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

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-btn-login);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: transform var(--transition);
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 4px 20px 18px;
}

/* ===== CONTENT BLOCK (raw HTML) ===== */
.content-body {
    color: var(--color-text);
    line-height: 1.75;
}

.content-body h2, .content-body h3, .content-body h4 {
    color: var(--color-gold);
    margin: 24px 0 10px;
    font-family: var(--font-heading);
}

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

.content-body ul, .content-body ol {
    margin: 0 0 14px 24px;
}

.content-body li {
    margin-bottom: 6px;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    overflow-x: auto;
    display: block;
}

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

.content-body table th {
    background: var(--color-table-head);
    color: var(--color-gold);
}

.content-body a {
    color: var(--color-gold);
}

.content-body strong {
    color: #fff;
}

.content-body blockquote {
    border-left: 3px solid var(--color-gold);
    padding: 8px 16px;
    color: var(--color-text-muted);
    margin: 16px 0;
}

/* ===== AUTHOR ===== */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 32px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.author-info strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.author-info a {
    color: var(--color-gold);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-header);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 28px;
}

.footer-logo img {
    height: 40px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}

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

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

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

.footer-logos-row .logo-pill {
    background: rgba(255, 255, 255, .07);
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 99px;
    border: 1px solid var(--color-border);
    white-space: nowrap;
}

.footer-divider {
    height: 1px;
    background: var(--color-border);
    margin: 18px 0;
}

.footer-legal {
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-legal p {
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 10px;
    text-align: center;
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: linear-gradient(90deg, #0b2421 0%, #163330 100%);
    border-top: 2px solid var(--color-gold);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.widget-text {
    font-size: 13px;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
    flex: 1;
}

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

.widget-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
}

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

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 12px;
    color: var(--color-text-muted);
    padding: 10px 0 0;
}

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

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

.breadcrumb span {
    color: var(--color-text);
}

/* ===== UNUSED STYLES (unikalizatsiya) ===== */
.xk9b2m {
    display: none;
}

.a7q3wz {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 20px 0;
}

.entry-content {
    color: inherit;
}

.elementor-widget {
    position: relative;
}

.post-thumbnail {
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-slider {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .cards-slider .card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

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

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

    .burger {
        display: flex;
    }

    .header-actions {
        gap: 6px;
    }

    .btn-login, .btn-reg {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero {
        min-height: 340px;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 18px;
    }

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

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-reg, .hero-btns .btn-login {
        width: 100%;
        justify-content: center;
    }

    .slot-game {
        padding: 24px 14px;
    }

    .reel {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

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

.dbvds {
    max-width: 980px;
    margin: 40px auto;
    padding: 36px 32px;
    background: #132f28;
    border: 1px solid #1e4d40;
    border-radius: 16px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
    color: #e8f5e1;
}

.dbvds h1,
.dbvds h2 {
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.dbvds h1 {
    font-size: 32px;
}

.dbvds h2 {
    font-size: 22px;
    margin-top: 28px;
    border-bottom: 1px solid #1e4d40;
    padding-bottom: 6px;
}

.dbvds p {
    font-size: 15px;
    line-height: 1.7;
    color: #9bbba8;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .dbvds {
        margin: 24px 12px;
        padding: 24px 18px;
        border-radius: 12px;
    }

    .dbvds h1 {
        font-size: 24px;
    }

    .dbvds h2 {
        font-size: 18px;
    }

    .dbvds p {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .dbvds {
        margin: 18px 10px;
        padding: 20px 14px;
    }

    .dbvds h1 {
        font-size: 22px;
    }

    .dbvds h2 {
        font-size: 17px;
    }

    .dbvds p {
        font-size: 13.5px;
    }
}

.burger {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #122e2a;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 220;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 4px;
    transition: transform .25s ease, opacity .25s ease, width .25s ease;
}

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

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

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

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 80px 22px 32px;
    background: rgba(14, 47, 43, .98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-overlay nav {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-overlay nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    background: #122e2a;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.mobile-nav-overlay nav a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.mobile-nav-overlay .close-nav {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: #122e2a;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-gold);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav-overlay .close-nav:hover {
    border-color: var(--color-gold);
}

.mobile-nav-overlay .btn-login,
.mobile-nav-overlay .btn-reg {
    min-width: 135px;
    justify-content: center;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .header-nav {
        display: none;
    }


    .header-inner {
        min-height: 62px;
    }
}

@media (max-width: 900px) {
    #tournaments .cards-grid,
    #bonuses .cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #tournaments .cards-slider,
    #bonuses .cards-slider {
        display: grid;
        overflow: visible;
    }

    #tournaments .card,
    #bonuses .card {
        width: 100%;
        min-width: 0;
        padding: 20px 16px;
    }

    #tournaments .card-prize,
    #bonuses .card-prize {
        font-size: 22px;
        line-height: 1.25;
        word-break: break-word;
    }

    #tournaments .card-desc,
    #bonuses .card-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    #tournaments .card-cta .btn-reg,
    #bonuses .card-cta .btn-reg {
        width: 100%;
        min-height: 44px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #tournaments .card,
    #bonuses .card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    #tournaments .card-title,
    #bonuses .card-title {
        font-size: 15px;
    }

    #tournaments .card-prize,
    #bonuses .card-prize {
        font-size: 20px;
    }

    #tournaments .card-timer,
    #bonuses .card-timer {
        font-size: 12px;
    }
}