html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: "Open Sans", sans-serif;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

html, body {
    width: 100%;
    height: 100%;
    background-color: #23242C;
    color: #fff
}

/*CUSTOM STYLE*/
section.main {
    padding: 15px 0;

    h1 {
        font-size: 27px;
        margin-bottom: 15px;

        @media(max-width: 768px) {
            font-size: 22px;
            text-align: center;
        }
    }

    h2 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.5;
        text-align: center;

        @media(max-width: 768px){
            font-size: 19px
        }
    }

    ul, ol {
        list-style: disc;
        padding-left: 15px;
        padding-top:20px;
        padding-bottom:20px;

        li {
            margin-bottom: 10px;
        }
    }

    p {
        margin-bottom: 10px;
        line-height: 1.4;
    }

    dl {
        margin-bottom: 20px
    }

    dt {
        margin-bottom: 10px;
        line-height: 1.4;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
        color: #000
    }

    td {
        padding: 12px 16px;
        border-bottom: 1px solid #e1e5e9;
        vertical-align: top;
    }

    tr:first-child td {
        background-color: #f8f9fa;
        font-weight: 600;
        color: #2c3e50;
        border-bottom: 2px solid #dee2e6;
    }

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

    tr:not(:first-child):hover {
        background-color: #f8f9fa;
        transition: background-color 0.2s ease;
    }

    p {
        margin: 10px 0 10px 0;
        line-height: 1.4;
    }

    strong {
        font-weight: 600;
    }

    @media screen and (max-width: 768px) {
        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        table {
            min-width: 600px;
            margin: 0;
            border-radius: 0;
        }

        td {
            white-space: nowrap;
            padding: 12px 8px;
            min-width: 120px;
        }

        td:first-child {
            min-width: 100px;
        }

        td:last-child {
            min-width: 200px;
            white-space: normal;
            max-width: 250px;
        }
    }
}

.content {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;

    @media(max-width: 1220px) {
        padding: 0 10px;
    }
}

.support-features {
    margin:40px 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    width: 100%;
    background: #3a3a4a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card {
    padding: 30px 25px;
    background: #3a3a4a;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    background: #424252;
    transform: translateY(-2px);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.support-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.multilingual-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.assistance-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.feature-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-features {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .feature-card:not(:last-child)::after {
        display: none;
    }

    .feature-card:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 12px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 12px;
    }
}

/* Animation */
.support-features {
    animation: slideInUp 0.8s ease-out;
}

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

/* Desktop Header */
.desktop-header {
    background-color: #2E2F3B;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;

    @media(max-width: 1200px) {
        width: 100px;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.logo-icon {
    background-color: white;
    color: #2c2c3e;
    padding: 8px;
    margin-right: 10px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;


    @media(max-width: 1200px) {
        font-size: 14px
    }
}

.nav-menu li a:hover {
    color: #4CAF50;
}

.search-container {
    position: relative;
}

.search-input {
    background-color: rgba(255,255,255,0.1);
    border: none;
    padding: 8px 40px 8px 15px;
    border-radius: 4px;
    color: white;
    width: 200px;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
}

.auth-buttons {
    display: flex;
    gap: 10px;

    @media (max-width: 990px) {
        display: none;
    }
}

.login-btn, .register-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;

    @media(max-width: 1200px) {
        padding: 7px 14px;
        font-size: 12px;
    }
}

.login-btn {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);

    @media(max-width: 1200px) {
        padding: 7px 14px;
        font-size: 12px;
    }
}

.register-btn {
    background-color: #e74c3c;
    color: white;
}

.login-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

.register-btn:hover {
    background-color: #c0392b;
}

/* Mobile Layout */
.mobile-container {
    display: none;
    background-color: #f5f5f5;
}

.mobile-header {
    background-color: #2E2F3B;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.mobile-header-left {
    display: flex;
    align-items: center;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
    padding: 5px;
}

.mobile-logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;

    img {
        width: 101px;
        height: 26px;
        object-fit: contain;
    }
}

.mobile-register-btn {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #2c2c3e;
    padding-top: 70px;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.open {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s;
}

.mobile-nav-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-nav-item.active {
    background-color: #4a4a6a;
}

.mobile-nav-icon {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
}

.language-selector {
    background-color: #4a4a6a;
    color: white;
    padding: 12px 20px;
    margin: 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

    .mobile-container {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-container {
        display: none;
    }
}





/*footer*/
.footer {
    background-color: #2c2c3e;
    width: 100%;
    padding: 40px 20px 20px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

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

    img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
}

.logo-18plus {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid #fff;
    position: relative;
}

.logo-18plus::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
}

.logo-rya {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.logo-rya::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

.footer-text {
    margin-bottom: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.company-info {
    font-size: 13px;
    color: #aaa;
}

.license-info {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
}

.warning-text {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 10px;
}

.age-requirement {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 20px;
}

.copyright {
    color: #888;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px 15px;
    }

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

    .logo-18plus {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .logo-rya {
        width: 65px;
        height: 50px;
        font-size: 16px;
    }

    .footer-content {
        font-size: 13px;
    }

    .footer-text {
        margin-bottom: 12px;
        text-align: left;
        padding: 0 10px;
    }

    .footer-links {
        margin-bottom: 20px;
        text-align: left;
        padding: 0 10px;
    }

    .company-info,
    .license-info {
        font-size: 12px;
        text-align: left;
        padding: 0 10px;
    }

    .warning-text,
    .age-requirement {
        text-align: left;
        padding: 0 10px;
    }

    .copyright {
        font-size: 11px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 10px 10px;
    }

    .footer-logos {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .logo-18plus {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .logo-rya {
        width: 60px;
        height: 45px;
        font-size: 14px;
    }

    .footer-content {
        font-size: 12px;
    }

    .footer-text,
    .footer-links,
    .company-info,
    .license-info,
    .warning-text,
    .age-requirement {
        padding: 0 5px;
    }
}

/* Hover effects for logos */
.logo-18plus:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.logo-rya:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Subtle animations */
.footer-content > * {
    animation: fadeInUp 0.6s ease-out;
}

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

.footer-text:nth-child(3) { animation-delay: 0.1s; }
.footer-text:nth-child(4) { animation-delay: 0.2s; }
.footer-text:nth-child(5) { animation-delay: 0.3s; }
.footer-text:nth-child(6) { animation-delay: 0.4s; }
.footer-text:nth-child(7) { animation-delay: 0.5s; }
.copyright { animation-delay: 0.6s; }


/*MAIN CONTENT*/
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Casino Banner */
.casino-banner {
    background: linear-gradient(135deg, #2c2c3e, #1a1a2e);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

.banner-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(231, 76, 60, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
            linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
}

.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    opacity: 0.8;
}

.shape-1 {
    width: 100px;
    height: 60px;
    top: 10%;
    left: 10%;
    transform: rotate(-15deg);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.shape-2 {
    width: 120px;
    height: 80px;
    top: 15%;
    right: 15%;
    transform: rotate(25deg);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.shape-3 {
    width: 80px;
    height: 50px;
    bottom: 20%;
    left: 20%;
    transform: rotate(-30deg);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.banner-content {
    z-index: 2;
    position: relative;
    flex: 1;
}

.banner-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.deposit-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.deposit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.bonus-club-logo {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 3;
}

.bonus-club-stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 5px;
}

.bonus-club-text {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 1.1;
}

.bonus-club-subtitle {
    font-size: 10px;
    background: #fff;
    color: #e74c3c;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 5px;
    font-weight: bold;
}

/* Games Sections */
.games-section {
    margin-bottom: 40px;
}

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

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #ccc;
}

.show-all-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.show-all-link:hover {
    color: #66BB6A;
}

.games-scroll {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.games-scroll::-webkit-scrollbar {
    height: 8px;
}

.games-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.games-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.games-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

.game-card {
    min-width: 180px;
    max-width: 180px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2c2c3e;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.game-image {
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-provider {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #4CAF50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.game-badge.exclusive {
    background: #FF9800;
}

.game-info {
    padding: 12px;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-title {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    color: #ccc;
}

/* Game Images */
.game-1 { background: url("../slots-image/slots_1.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-2 { background: url("../slots-image/slots_2.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-3 { background: url("../slots-image/slots_3.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-4 { background: url("../slots-image/slots_4.webp") no-repeat 0 0; object-fit: contain; background-position: center;}
.game-5 { background: url("../slots-image/slots_5.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-6 { background: url("../slots-image/slots_6.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-7 { background: url("../slots-image/slots_7.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-8 { background: url("../slots-image/slots_8.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-9 { background: url("../slots-image/slots_9.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-10 { background: url("../slots-image/slots_10.webp") no-repeat 0 0; object-fit: contain; background-position: center; }

.new-game-1 { background: url("../slots-image/slots_11.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-2 { background: url("../slots-image/slots_12.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-3 { background: url("../slots-image/slots_13.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-4 { background: url("../slots-image/slots_14.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-5 { background: url("../slots-image/slots_15.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-6 { background: url("../slots-image/slots_16.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-7 { background: url("../slots-image/slots_17.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-8 { background: url("../slots-image/slots_18.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-9 { background: url("../slots-image/slots_19.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-10 { background: url("../slots-image/slots_20.webp") no-repeat 0 0; object-fit: contain; background-position: center; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .casino-banner {
        padding: 25px 20px;
        min-height: 200px;
        flex-direction: column;
        text-align: center;
    }

    .banner-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .banner-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .bonus-club-logo {
        position: static;
        width: 120px;
        height: 120px;
        margin-top: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .show-all-link {
        font-size: 14px;
    }

    .game-card {
        min-width: 150px;
        max-width: 150px;
        height: 200px;
    }

    .games-scroll {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .game-card {
        min-width: 130px;
        max-width: 130px;
        height: 180px;
    }

    .bonus-club-logo {
        width: 100px;
        height: 100px;
    }

    .bonus-club-text {
        font-size: 14px;
    }
}