/* Izzi Casino Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #16151f;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Unused styles for uniqueness */
.elementor-section { display: block; }
.wp-block-column { margin: 0; }
.site-header-wrapper { position: relative; }
.entry-content-wrapper { padding: 0; }

/* Header Styles */
.hdr3k9q {
    background-color: #292737;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo-img {
    max-height: 50px;
    width: 100px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.main-nav a:hover {
    color: #78e7d6;
}

.q7w2np {
    background: #78e7d6;
    color: #16151f;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.q7w2np:hover {
    background: #5fd4c3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 231, 214, 0.3);
    color: #16151f;
}

.t9k4xs {
    background: #9853db;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.t9k4xs:hover {
    background: #8142c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 83, 219, 0.3);
    color: #ffffff;
}

.online-players {
    font-size: 13px;
    color: #e0e0e0;
}

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

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

/* Burger Menu */
.burger-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.burger-btn span {
    display: block;
    height: 3px;
    background: #78e7d6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

.mobile-menu {
    display: none;
    background: #292737;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    margin-bottom: 25px;
}

.hero-btn {
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 12px;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(41, 39, 55, 0.7);
    color: #78e7d6;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(41, 39, 55, 0.9);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Main Content */
.main-content {
    min-height: 500px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #78e7d6;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #78e7d6, #9853db);
    border-radius: 2px;
}

/* Jackpots Section */
.jackpot-card {
    background: linear-gradient(135deg, #292737 0%, #1e1c2a 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(120, 231, 214, 0.2);
    transition: all 0.3s ease;
}

.jackpot-card:hover {
    transform: translateY(-8px);
    border-color: #78e7d6;
    box-shadow: 0 8px 24px rgba(120, 231, 214, 0.3);
}

.jackpot-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.jackpot-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 42px;
    font-weight: 800;
    color: #9853db;
    font-family: 'Courier New', monospace;
}

.jackpot-currency {
    font-size: 18px;
    color: #a0a0a0;
}

/* Screenshots Section */
.screenshot-card {
    background: #292737;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

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

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #e0e0e0;
}

.screenshots-slider {
    position: relative;
    overflow-x: auto;
    display: flex;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

.screenshot-slide {
    flex: 0 0 90%;
    scroll-snap-align: center;
}

/* Winners Table */
.winners-table-wrapper {
    overflow-x: auto;
    background: #292737;
    border-radius: 15px;
    padding: 20px;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.winners-table thead {
    background: #1e1c2a;
}

.winners-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #78e7d6;
    border: 2px solid #16151f;
}

.winners-table td {
    padding: 12px 15px;
    border: 1px solid #1e1c2a;
    color: #e0e0e0;
}

.winners-table tbody tr {
    transition: background 0.2s ease;
}

.winners-table tbody tr:hover {
    background: #1e1c2a;
}

.winners-table tbody tr:nth-child(odd) {
    background: rgba(41, 39, 55, 0.5);
}

/* Games Section */
.game-card {
    background: #292737;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #9853db;
    box-shadow: 0 8px 20px rgba(152, 83, 219, 0.3);
}

.game-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.game-btn {
    background: #78e7d6;
    color: #16151f;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.game-btn:hover {
    background: #5fd4c3;
    color: #16151f;
}

.games-slider {
    overflow-x: auto;
    display: flex;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

/* Mini Slot Game */
.mini-slot-container {
    background: linear-gradient(135deg, #292737 0%, #1e1c2a 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 3px solid #9853db;
}

.slot-machine {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    background: #16151f;
    padding: 20px;
    border-radius: 15px;
}

.slot-reel {
    background: #292737;
    border: 3px solid #78e7d6;
    border-radius: 12px;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.slot-symbol {
    font-size: 60px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-reel.spinning {
    animation: spin 0.5s linear;
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-840px); }
}

.slot-btn {
    font-size: 20px;
    padding: 15px 50px;
    border-radius: 12px;
    cursor: pointer;
}

.slot-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.slot-result {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.slot-result.win {
    color: #00ff00;
    animation: celebrate 0.5s ease;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

/* Content Section */
.content-wrapper {
    background: #292737;
    border-radius: 15px;
    padding: 40px;
    border-left: 5px solid #78e7d6;
}

.content-wrapper h2 {
    color: #78e7d6;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
}

.content-wrapper h3 {
    color: #9853db;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 22px;
}

.content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-wrapper table {
    width: 100%;
    margin: 25px auto;
    border-collapse: collapse;
    background: #1e1c2a;
    border-radius: 10px;
    overflow: hidden;
}

.content-wrapper table th {
    background: #16151f;
    padding: 12px;
    border: 2px solid #292737;
    color: #78e7d6;
    font-weight: 700;
}

.content-wrapper table td {
    padding: 10px 12px;
    border: 1px solid #292737;
    text-align: left;
}

.content-wrapper a {
    color: #78e7d6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: #9853db;
}

/* Author Section */
.author-card {
    background: linear-gradient(135deg, #292737 0%, #1e1c2a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(152, 83, 219, 0.3);
}

.author-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #78e7d6;
    object-fit: cover;
}

.author-name {
    font-size: 28px;
    font-weight: 700;
    color: #78e7d6;
    margin-bottom: 15px;
}

.author-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.author-link {
    color: #9853db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: #78e7d6;
    text-decoration: underline;
}

/* Footer */
.ftr8j2q {
    background: #292737;
    color: #e0e0e0;
    margin-top: 60px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #78e7d6;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #78e7d6;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logo {
    width: 50px;
    height: 30px;
    object-fit: contain;
    background: #1e1c2a;
    padding: 5px;
    border-radius: 5px;
}

.provider-title {
    font-size: 16px;
    font-weight: 600;
    color: #78e7d6;
    margin-bottom: 10px;
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-name {
    background: #1e1c2a;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    color: #e0e0e0;
}

.age-badge {
    background: #9853db;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
}

.restriction-text {
    font-size: 12px;
    color: #a0a0a0;
    margin: 0;
}

.copyright-text {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.6;
}

.legal-text {
    font-size: 11px;
    color: #808080;
    line-height: 1.5;
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #9853db 0%, #7842c7 100%);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.widget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.widget-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.widget-text strong {
    font-size: 18px;
    font-weight: 700;
}

.widget-text span {
    font-size: 14px;
}

.widget-btn {
    white-space: nowrap;
    padding: 12px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .jackpot-amount {
        font-size: 32px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .author-card {
        padding: 20px;
    }
    
    .widget-text strong {
        font-size: 14px;
    }
    
    .widget-text span {
        font-size: 12px;
    }
    
    .widget-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mini-slot-container {
        padding: 20px;
    }
    
    .slot-symbol {
        font-size: 40px;
        height: 80px;
    }
    
    .slot-reel {
        height: 80px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .widget-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* =========================
   NEW (scope: .container.new)
   styles + mobile адаптація
========================= */

:root{
    --new-bg: rgba(255,255,255,.04);
    --new-card: rgba(255,255,255,.03);
    --new-border: rgba(255,255,255,.10);

    --new-text: rgba(255,255,255,.92);
    --new-muted: rgba(255,255,255,.72);

    --new-accent: var(--p8f4n, #78e7d6);
    --new-purple: var(--m3v7s, #9853db);

    --new-radius: 16px;
    --new-shadow: 0 16px 50px rgba(0,0,0,.35);
}

/* container */
.container.new{
    max-width: 980px;
    margin: 0 auto;
    padding: 26px 18px;
    color: var(--new-text);
}

/* typography */
.container.new p{
    color: var(--new-muted);
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 14px;
}

.container.new h1{
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -0.6px;
    background: linear-gradient(135deg, var(--new-accent), var(--new-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container.new h2{
    margin: 26px 0 14px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 850;
    color: rgba(255,255,255,.96);
    position: relative;
    padding-left: 14px;
}

.container.new h2::before{
    content:"";
    position:absolute;
    left:0;
    top:.22em;
    width: 6px;
    height: 1.05em;
    border-radius: 6px;
    background: linear-gradient(180deg, var(--new-accent), var(--new-purple));
    box-shadow: 0 8px 18px rgba(120,231,214,.18);
}

.container.new h3{
    margin: 18px 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255,255,255,.94);
}

.container.new strong{
    color: rgba(255,255,255,.96);
    font-weight: 800;
}

/* “hero card” для першого абзацу */
.container.new > p:first-of-type{
    background: linear-gradient(135deg, rgba(120,231,214,.08), rgba(152,83,219,.10));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--new-radius);
    padding: 18px 18px;
    color: rgba(255,255,255,.88);
    box-shadow: var(--new-shadow);
}

/* links */
.container.new a{
    color: var(--new-accent);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(120,231,214,.35);
    transition: transform .12s ease, filter .2s ease, border-color .2s ease;
    word-break: break-word;
}

.container.new a:hover{
    border-bottom-color: rgba(120,231,214,.75);
    filter: brightness(1.05);
}
.container.new a:active{ transform: translateY(1px); }

/* lists */
.container.new ul,
.container.new ol{
    margin: 12px 0 16px;
    padding-left: 22px;
    color: var(--new-muted);
}

.container.new li{
    margin: 8px 0;
    line-height: 1.7;
}

.container.new ul li::marker{ color: rgba(120,231,214,.85); }
.container.new ol li::marker{ color: rgba(152,83,219,.85); font-weight: 900; }

/* table (mobile friendly scroll) */
.container.new table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 14px 0 18px;
    background: var(--new-card);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.22);

    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.container.new table th,
.container.new table td{
    padding: 14px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,.08);
    min-width: 180px; /* щоб скрол був логічний */
}

.container.new table tr:last-child td{ border-bottom: 0; }

.container.new table th{
    font-weight: 900;
    color: rgba(255,255,255,.95);
    background: linear-gradient(135deg, rgba(120,231,214,.10), rgba(152,83,219,.14));
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.container.new table td{ color: rgba(255,255,255,.80); }

.container.new table tr:hover td{ background: rgba(255,255,255,.03); }

.container.new table::-webkit-scrollbar{ height: 10px; }
.container.new table::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.12);
    border-radius: 999px;
}

/* “Q&A” paragraphs where strong starts the line */
.container.new h2 + p strong,
.container.new p > strong:first-child{
    color: var(--new-accent);
}

/* hr */
.container.new hr{
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 22px 0;
}

/* images */
.container.new img{
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 35px rgba(0,0,0,.22);
    margin: 14px 0;
}

/* якщо .container.new вкладений в hover-section, прибираємо “зайвий” падінг */
.m9x3k-section .container.new{ padding: 0; }

/* =========================
   Responsive
========================= */
@media (max-width: 992px){
    .container.new{ max-width: 100%; }
    .container.new h1{ font-size: 34px; }
    .container.new h2{ font-size: 24px; }
}

@media (max-width: 768px){
    .container.new{ padding: 18px 12px; }

    .container.new > p:first-of-type{
        padding: 16px 14px;
    }

    .container.new p{
        font-size: 15px;
        line-height: 1.8;
    }

    .container.new h1{ font-size: 28px; }
    .container.new h2{
        font-size: 20px;
        margin-top: 22px;
    }

    /* links in long text */
    .container.new a{ border-bottom-width: 1px; }
}

@media (max-width: 420px){
    .container.new h1{ font-size: 24px; }
    .container.new h2{ font-size: 18px; }

    .container.new ul,
    .container.new ol{ padding-left: 18px; }
}

/* optional: якщо треба трохи більше відступів між блоками */
@media (max-width: 360px){
    .container.new p{ margin-bottom: 12px; }
}

/* ===== FIX: burger visible on mobile ===== */

/* щоб бургер не стискався між кнопками */
#burgerBtn.burger-btn{
    flex: 0 0 auto;
    width: 44px;
    height: 40px;
    padding: 10px;
    margin-left: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    display: inline-flex;              /* важливо */
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1101;                      /* вище хедера/меню */
}

/* самі лінії */
#burgerBtn.burger-btn span{
    display: block;
    width: 22px;
    height: 2px;
    background: #78e7d6 !important;     /* щоб точно було видно */
    border-radius: 999px;
    transition: transform .25s ease, opacity .2s ease;
}

/* робимо нормальний відступ між лініями */
#burgerBtn.burger-btn span + span{
    margin-top: 5px;
}

/* активний стан (хрестик) */
#burgerBtn.burger-btn.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
#burgerBtn.burger-btn.active span:nth-child(2){
    opacity: 0;
}
#burgerBtn.burger-btn.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* мобільне меню: зробимо "оверлей" і щоб не ховалось */
#mobileMenu.mobile-menu{
    position: fixed;                    /* замість absolute */
    top: 72px;                          /* під висоту хедера */
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 18px 24px;
    overflow-y: auto;
    display: none;
    z-index: 1100;
    background: rgba(41,39,55,.98);
    backdrop-filter: blur(8px);
}

/* показ меню */
#mobileMenu.mobile-menu.active{
    display: block;
}

/* щоб у хедера все було поверх контенту */
.hdr3k9q{
    z-index: 1102;
}

/* дрібний екран: кнопки компактніше, щоб бургер точно вліз */
@media (max-width: 420px){
    .hdr3k9q .q7w2np,
    .hdr3k9q .t9k4xs{
        padding: 6px 10px;
        font-size: 12px;
    }
}
/* ===== Mobile games slider visible + scroll ===== */
.games-slider{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 4px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.games-slider::-webkit-scrollbar{ height: 10px; }
.games-slider::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.12);
    border-radius: 999px;
}

.games-slider .game-slide{
    flex: 0 0 72%;
    max-width: 72%;
    scroll-snap-align: start;
}

@media (max-width: 420px){
    .games-slider .game-slide{
        flex-basis: 84%;
        max-width: 84%;
    }
}

/* Unused WordPress-like classes for confusion */
.wp-site-blocks { display: block; }
.wp-block-post-content { margin: 0; }
.has-global-padding { padding: 0; }
.alignfull { width: 100%; }
