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

:root {
    --bg: #f4f0fb;
    --bg-sidebar: #2D2B52;
    --bg-sidebar-active: #433E72;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f5ff;
    --bg-header: #1e2150;
    --text: #1a1a2e;
    --text-muted: #5c5a6f;
    --accent: #5031fa;
    --accent-light: #6b4dff;
    --cta: #ff2d78;
    --cta-hover: #ff4d8f;
    --gold: #ffd700;
    --border: #e0dce8;
    --border-dark: #2a2450;
    --radius: 12px;
    --radius-sm: 8px;
    --sidebar-w: 220px;
    --header-h: 72px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --logo-green: #75eb00;
    --sidebar-label: #B0B0C4;
    --sidebar-scroll: #A29CE2;
    --sidebar-card-bg: #2C2D4B;
    --app-download-icon: #E9427F;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    grid-template-rows: var(--header-h) auto;
    min-height: 100vh;
    height: 100vh;
    width: 100%
}

header {
    grid-column: 1/-1;
    grid-row: 1;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: var(--bg-header);
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    height: var(--header-h)
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.menu-toggle {
    display: none;
    background: 0 0;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 8px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px
}

.logo-icon {
    flex-shrink: 0
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid #ffffff;
    border-radius: 20px;
    padding: 8px 18px;
    color: #cccccc;
    font-size: 13px;
    cursor: pointer;
    transition: border-color .2s
}

.search-box:hover {
    border-color: #ffffff;
    color: #ffffff
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background .2s
}

.lang-select:hover {
    background: rgba(255, 255, 255, .1)
}

.btn-login {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: 1.5px solid #ffffff;
    background: var(--bg-header);
    transition: all .2s
}

.btn-login:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, .1)
}

.btn-register {
    background: #5031fa;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    transition: all .2s
}

.btn-register:hover {
    background: #6b4dff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(80, 49, 250, .4)
}

.sidebar {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    background: var(--bg-sidebar);
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid var(--sidebar-scroll);
    z-index: 50
}

.sidebar-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 4px
}

.tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
    flex: 1;
    justify-content: center
}

.tab.active {
    background: var(--bg-sidebar-active);
    color: #fff
}

.tab:hover:not(.active) {
    background: rgba(255, 255, 255, .08);
    color: #ffffff
}

.sidebar-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--bg-sidebar-active);
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform .2s;
    overflow: hidden;
    position: relative;
    min-height: 60px
}

.sidebar-promo:hover {
    background: #4d4785
}

.sidebar-promo span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    z-index: 1
}

.sidebar-promo-img {
    flex-shrink: 0;
    width: auto;
    max-height: 54px;
    object-fit: contain;
    margin-left: 8px
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.sidebar-card {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--sidebar-card-bg);
    border-radius: 14px;
    padding: 6px 0 10px;
    margin: 0 6px
}

.sidebar-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--sidebar-label);
    letter-spacing: 1.5px;
    padding: 12px 14px 8px;
    text-transform: uppercase
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    position: relative
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transform: translateX(4px)
}

.sidebar-link svg {
    flex-shrink: 0;
    opacity: 1;
    color: #ffffff
}

.sidebar-link:hover svg {
    opacity: 1
}

.sidebar-link .chevron {
    margin-left: auto;
    opacity: .4;
    transition: transform .2s
}

.sidebar-link:hover .chevron {
    opacity: .8
}

.sidebar-app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 28px;
    text-decoration: none;
    color: var(--bg-sidebar);
    font-size: 14px;
    font-weight: 700;
    transition: all .2s;
    border: none
}

.sidebar-app:hover {
    background: #f0eef5;
    transform: translateY(-1px)
}

.sidebar-app svg:first-child {
    color: var(--bg-sidebar)
}

.sidebar-app svg:last-child {
    margin-left: auto
}

.sidebar-android {
    background: #e8f5e9
}

.sidebar-android:hover {
    background: #c8e6c9
}

main {
    grid-column: 2;
    grid-row: 2;
    overflow-x: hidden;
    padding: 0;
    background: var(--bg)
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius)
}

.slides-track {
    display: flex;
    height: 100%;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.slide {
    flex: 0 0 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background-color: #1a0a3e;
    background-image: url('main-baner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.slide-content {
    text-align: center;
    z-index: 2;
    padding: 40px 40px 36px
}

.slide-content h1,
.slide-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 8px
}

.slide-content p {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 500
}

.btn-cta {
    display: inline-block;
    background: #E94793;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 48px;
    border-radius: 12px;
    border: none;
    transition: background .2s;
    box-shadow: none
}

.btn-cta:hover {
    background: #d63d82;
    color: #fff
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
    padding: 0
}

.dot.active {
    background: var(--cta);
    border-color: var(--cta);
    width: 28px;
    border-radius: 5px
}

.winners-section {
    padding: 16px 24px
}

.winners-marquee {
    overflow: hidden;
    position: relative
}

.winners-marquee::before,
.winners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none
}

.winners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent)
}

.winners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent)
}

.winners-track {
    display: flex;
    gap: 12px;
    animation: marquee 30s linear infinite;
    width: max-content
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.winner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05)
}

.winner-card:hover {
    border-color: var(--accent)
}

.winner-game {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.winner-user {
    font-size: 11px;
    color: var(--text-muted)
}

.winner-amount {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 2px;
    align-self: flex-start
}

.games-section {
    padding: 24px
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text)
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 8px
}

.see-all {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .2s
}

.see-all:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.nav-btn:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover)
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px
}

.game-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e0f5, #d4c8ed, #c0b0e0);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 30, 168, .15)
}

.game-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0d5f5, #c8b8e8, #b0a0d8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

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

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 17, 69, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

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

.play-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 25px;
    transition: all .2s
}

.play-btn:hover {
    background: var(--accent-light);
    transform: scale(1.05)
}

.content-block {
    padding: 32px 24px;
    max-width: 900px
}

.content-block h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.3
}

.content-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--accent)
}

.content-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px
}

.content-block ul {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.content-block ul li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent)
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden
}

.content-block thead {
    background: var(--accent)
}

.content-block th {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.content-block td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border)
}

.content-block tbody tr {
    background: var(--bg-card);
    transition: background .2s
}

.content-block tbody tr:hover {
    background: var(--bg-card-hover)
}

.content-block tbody tr:last-child td {
    border-bottom: 0
}

.payment-methods {
    padding: 24px;
    border-top: 1px solid var(--border)
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.payment-logo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s
}

.payment-logo:hover {
    border-color: var(--accent)
}

.providers-section {
    padding: 24px
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px
}

.provider-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all .2s;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
}

footer {
    padding: 32px 24px;
    border-top: 1px solid var(--border)
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.footer-logo-link img {
    display: block;
    height: auto;
    max-height: 44px;
    object-fit: contain
}

.bottom-nav {
    display: none
}

.footer-responsible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 1px solid var(--border)
}

.responsible-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.responsible-center {
    text-align: center
}

.gambleaware-text {
    font-size: 24px;
    font-weight: 700;
    color: #555;
    letter-spacing: -0.5px
}

.gambleaware-text span {
    font-size: 12px;
    vertical-align: super
}

.gambleaware-sub {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 2px;
    margin-top: 2px
}

.responsible-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.responsible-warning {
    text-align: right
}

.responsible-warning em {
    display: block;
    font-size: 16px;
    color: #999;
    font-style: italic;
    line-height: 1.4
}

.footer-partners {
    padding: 20px 0;
    margin-bottom: 16px
}

.partners-logo {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.cream-text {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-style: italic
}

.partners-text {
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 1px
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px
}

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

@media(max-width:1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:768px) {
    body {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0
    }

    main {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-bottom: calc(64px + env(safe-area-inset-bottom) + 24px)
    }

    header {
        padding-left: max(8px, env(safe-area-inset-left));
        padding-right: max(8px, env(safe-area-inset-right))
    }

    .menu-toggle {
        display: none
    }

    .search-box {
        display: none
    }

    .header-left {
        flex: 0 1 auto;
        gap: 0;
        min-width: 0
    }

    .header-right {
        flex: 0 0 auto;
        justify-content: flex-end;
        gap: 6px
    }

    .lang-select {
        flex-shrink: 0
    }

    .btn-login {
        background: #5031fa;
        border-color: #5031fa;
        color: #fff
    }

    .btn-login:hover {
        background: #6b4dff;
        border-color: #6b4dff
    }

    .logo span {
        font-size: 14px;
        letter-spacing: 0.5px
    }

    .logo-icon {
        width: 28px;
        height: 28px
    }

    .btn-login,
    .btn-register {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 13px;
        flex-shrink: 0
    }

    .sidebar {
        position: fixed;
        left: -100%;
        top: var(--header-h);
        width: min(260px, 85vw);
        max-width: 260px;
        height: calc(100vh - var(--header-h));
        transition: left .3s ease;
        z-index: 99;
        border-right: 1px solid var(--border-dark);
        -webkit-overflow-scrolling: touch
    }

    .sidebar.open {
        left: 0
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 98;
        opacity: 0;
        transition: opacity .3s;
        top: var(--header-h)
    }

    .sidebar-overlay.active {
        display: block;
        opacity: 1
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: #fff;
        border-top: 1px solid var(--border);
        align-items: center;
        justify-content: space-around;
        z-index: 100;
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right)
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 600;
        flex: 1;
        padding: 6px 4px;
        transition: color .2s
    }

    .bottom-nav-item svg {
        flex-shrink: 0
    }

    .bottom-nav-item:active,
    .bottom-nav-item:hover {
        color: var(--accent)
    }

    .bottom-nav-register {
        color: #fff;
        background: var(--bg-header);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        justify-content: center;
        margin-top: -20px;
        box-shadow: 0 4px 12px rgba(30, 33, 80, .35)
    }

    .bottom-nav-register svg {
        width: 24px;
        height: 24px
    }

    .bottom-nav-register:hover,
    .bottom-nav-register:active {
        color: #fff;
        background: #252a5c
    }

    .games-section {
        padding: 10px 8px
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px
    }

    .game-card {
        aspect-ratio: 3/4
    }

    .game-card .game-overlay {
        opacity: 0.92
    }

    .game-card:active .game-overlay {
        opacity: 1
    }

    .play-btn {
        min-height: 44px;
        padding: 12px 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .hero-slider {
        height: 38vh;
        min-height: 180px;
        border-radius: 0;
        margin-left: -8px;
        margin-right: -8px;
        width: calc(100% + 16px)
    }

    .slide-content {
        padding: 24px 16px 28px
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: clamp(22px, 5vw, 32px)
    }

    .slide-content p {
        font-size: 14px
    }

    .section-header {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 12px
    }

    .section-header h2 {
        font-size: 16px;
        flex: 1 1 100%
    }

    .section-controls {
        flex: 1 1 auto;
        justify-content: flex-end
    }

    .see-all {
        padding: 8px 12px;
        font-size: 12px
    }

    .nav-btn {
        min-width: 44px;
        min-height: 44px
    }

    .winners-section {
        padding: 8px 8px
    }

    .winners-marquee {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity
    }

    .winners-track {
        animation: none;
        display: flex;
        gap: 8px;
        width: max-content;
        padding: 2px 0
    }

    .winner-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        min-width: 108px;
        padding: 6px 8px
    }

    .winner-game {
        font-size: 11px
    }

    .winner-user {
        font-size: 10px
    }

    .winner-amount {
        font-size: 12px;
        padding: 2px 6px
    }

    .winners-section {
        overflow-x: hidden
    }

    .winners-marquee {
        min-width: 0;
        max-width: 100%
    }

    .lang-select span {
        display: none
    }

    .content-block {
        padding: 20px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right))
    }

    .content-block h2 {
        font-size: 20px;
        margin-bottom: 12px
    }

    .content-block h3 {
        font-size: 17px;
        margin: 20px 0 10px
    }

    .content-block p,
    .content-block ul li {
        font-size: 14px
    }

    .content-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch
    }

    .content-block th,
    .content-block td {
        padding: 10px 12px;
        font-size: 13px
    }

    .payment-methods {
        padding: 16px 12px
    }

    .payment-logos {
        gap: 12px
    }

    .payment-logo {
        padding: 8px 12px
    }

    .footer-logos {
        gap: 16px;
        margin-bottom: 20px
    }

    .footer-logo-link img {
        max-height: 36px
    }

    footer {
        padding: 24px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right))
    }

    .footer-bottom {
        padding-top: 12px
    }

    .footer-bottom p {
        font-size: 12px;
        text-align: center
    }

    .providers-section {
        padding: 16px 12px
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px
    }

    .provider-card {
        padding: 10px 6px;
        font-size: 10px
    }
}

@media(max-width:480px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px
    }

    .games-section {
        padding: 8px 6px
    }

    .hero-slider {
        height: 38vh;
        min-height: 160px;
        margin-left: -6px;
        margin-right: -6px;
        width: calc(100% + 12px)
    }

    .slide-content {
        padding: 20px 12px 24px
    }

    .btn-cta {
        padding: 10px 24px;
        font-size: 13px;
        min-height: 40px
    }

    .header-right {
        gap: 6px
    }

    .winner-card {
        min-width: 96px;
        padding: 5px 6px
    }

    .winner-game {
        font-size: 10px
    }

    .winner-amount {
        font-size: 11px
    }

    .content-block h2 {
        font-size: 18px
    }

    .content-block h3 {
        font-size: 16px
    }

    .payment-logos {
        gap: 8px;
        justify-content: center
    }

    .payment-logo svg {
        max-width: 50px;
        max-height: 18px
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .provider-card {
        font-size: 10px
    }

    .slider-dots {
        bottom: 12px
    }

    .dot {
        width: 8px;
        height: 8px
    }

    .dot.active {
        width: 22px
    }
}