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, bottom_content, 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,
bottom_content, 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*/
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;
    }

    /* Стилі для таблиць в content-wrapper */
    .content-wrapper {
        overflow-x: hidden;
    }
    .content-wrapper table {
        width: 100%;
        border-collapse: collapse;
        background: linear-gradient(135deg, #2a2a3a 0%, #1e1e2e 100%);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        margin: 25px 0;
        font-family: 'Roboto', sans-serif;
    }

    .content-wrapper td {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        vertical-align: middle;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.5;
    }

    /* Стилі для заголовків таблиці */
    .content-wrapper tr:first-child td {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        font-weight: 600;
        color: #ffffff;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 13px;
    }

    /* Видалити border для останнього рядка */
    .content-wrapper tr:last-child td {
        border-bottom: none;
    }

    /* Hover ефект для рядків (крім заголовка) */
    .content-wrapper tr:not(:first-child):hover td {
        background-color: rgba(255, 255, 255, 0.05);
        transition: background-color 0.2s ease;
    }

    /* Стилі для strong елементів в таблиці */
    .content-wrapper table strong {
        font-weight: 600;
        color: #fff;
    }

    /* Мобільні стилі */
    @media screen and (max-width: 768px) {
        .content-wrapper table {
            min-width: 600px;
            margin: 0;
            border-radius: 0
        }
        .content-wrapper  {
            width: 100%;
            overflow-x: scroll;
            -webkit-overflow-scrolling: touch;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            margin: 20px 0;
        }

        .content-wrapper table {
            min-width: 500px;
            margin: 0;
            border-radius: 0;
        }

        .content-wrapper td {
            padding: 12px 10px;
            font-size: 13px;
            white-space: nowrap;
        }

        .content-wrapper td:first-child {
            min-width: 120px;
            font-weight: 500;
        }

        .content-wrapper td:last-child {
            min-width: 180px;
            white-space: normal;
            max-width: 200px;
        }

        .content-wrapper tr:first-child td {
            font-size: 12px;
            padding: 14px 10px;
        }
    }

    @media screen and (max-width: 480px) {
        .content-wrapper .table-container {
            margin: 15px -10px;
            border-radius: 8px;
        }

        .content-wrapper table {
            min-width: 450px;
        }

        .content-wrapper td {
            padding: 10px 8px;
            font-size: 12px;
        }

        .content-wrapper tr:first-child td {
            font-size: 11px;
            padding: 12px 8px;
        }
    }

    /* Додаткові стилі для покращення читабельності */
    .content-wrapper table em {
        font-style: italic;
        color: #cccccc;
        font-size: 13px;
    }

    /* Анімація появи таблиці */
    .content-wrapper table {
        animation: tableSlideIn 0.6s ease-out;
    }

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

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

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

/* 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: 100px;
    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;
    }
}


/*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("../img/list-images/1.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-2 { background: url("../img/list-images/2.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-3 { background: url("../img/list-images/3.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-4 { background: url("../img/list-images/4.webp") no-repeat 0 0; object-fit: contain; background-position: center;}
.game-5 { background: url("../img/list-images/5.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-6 { background: url("../img/list-images/6.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-7 { background: url("../img/list-images/7.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-8 { background: url("../img/list-images/8.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-9 { background: url("../img/list-images/9.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.game-10 { background: url("../img/list-images/10.webp") no-repeat 0 0; object-fit: contain; background-position: center; }

.new-game-1 { background: url("../img/list-images/11.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-2 { background: url("../img/list-images/12.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-3 { background: url("../img/list-images/13.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-4 { background: url("../img/list-images/14.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-5 { background: url("../img/list-images/15.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-6 { background: url("../img/list-images/16.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-7 { background: url("../img/list-images/17.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-8 { background: url("../img/list-images/18.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-9 { background: url("../img/list-images/19.webp") no-repeat 0 0; object-fit: contain; background-position: center; }
.new-game-10 { background: url("../img/list-images/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;
    }
}

.promotions-section {
    margin-bottom: 50px;
}

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

.section-title {
    font-size: 28px;
    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;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promo-card {
    background: linear-gradient(135deg, #2c2c3e, #1a1a2e);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    min-height: 300px;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.promo-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(231, 76, 60, 0.2));
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.promo-badge.weekly {
    background: #4CAF50;
}

.promo-badge.special {
    background: #FF9800;
}

.promo-badge.limited {
    background: #9C27B0;
}

.promo-content {
    padding: 20px;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
}

.promo-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 15px;
}

.promo-amount {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.promo-period {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.claim-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Promotion Background Images */
.promo-1 {
    background: linear-gradient(135deg, #FF6B35, #F7931E),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text y="100" x="100" text-anchor="middle" font-size="80">💰</text></svg>') center/cover;
}

.promo-2 {
    background: linear-gradient(135deg, #667eea, #764ba2),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text y="100" x="100" text-anchor="middle" font-size="80">🎰</text></svg>') center/cover;
}

.promo-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text y="100" x="100" text-anchor="middle" font-size="80">🎁</text></svg>') center/cover;
}

.promo-4 {
    background: linear-gradient(135deg, #4facfe, #00f2fe),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text y="100" x="100" text-anchor="middle" font-size="80">⚽</text></svg>') center/cover;
}

.promo-details {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* Floating Animation for some elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.promo-card:nth-child(2) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.promo-card:nth-child(4) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .promotions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .promo-card {
        min-height: 280px;
    }

    .promo-image {
        height: 180px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 20px 15px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .promo-card {
        min-height: 320px;
        max-width: 100%;
    }

    .promo-image {
        height: 160px;
    }

    .promo-content {
        padding: 18px;
    }

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

    .promo-amount {
        font-size: 20px;
    }

    .claim-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-card {
        min-height: 300px;
    }

    .promo-image {
        height: 140px;
    }

    .promo-content {
        padding: 15px;
    }

    .promo-title {
        font-size: 15px;
    }

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

    .promo-amount {
        font-size: 18px;
    }
}

/* Additional hover effects */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.promo-card:hover::before {
    transform: translateX(100%);
}

/* Sparkle effect */
.promo-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.promo-1::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkle 3s infinite;
}

.promo-3::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 15%;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkle 2.5s infinite 1s;
}

.footer {
    background: linear-gradient(135deg, #2c2c3e, #1a1a2e);
    width: 100%;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-main {
    padding: 60px 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
}

.brand-name {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.brand-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #4CAF50;
    padding-left: 10px;
}

.footer-link::before {
    content: '▶';
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-middle {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-description {
    color: #aaa;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.app-description {
    color: #aaa;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.app-icon {
    font-size: 24px;
}

.app-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-text-small {
    font-size: 10px;
    opacity: 0.8;
}

.app-text-main {
    font-size: 12px;
    font-weight: bold;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: center;
    padding-top: 30px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.logo-18plus {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    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: 70px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    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%);
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    width: 45px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.05);
}

.legal-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.legal-text {
    color: #888;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.legal-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #66BB6A;
    text-decoration: underline;
}

.copyright {
    color: #666;
    font-size: 11px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 15px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .app-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }

    .legal-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-logo {
        justify-content: center;
        text-align: center;
    }

    .brand-description {
        text-align: center;
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

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

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-logos {
        justify-content: center;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-icon {
        width: 40px;
        height: 28px;
        font-size: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

/* Main Content Sections */
.casino-main-content {
    padding: 10px 0;
}

.casino-secondary-content {
    padding: 20px 0;
}

/* Typography */
.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 3rem 0 1.5rem 0;
    position: relative;
    padding-left: 20px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.subsection-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a78bfa;
    margin: 2rem 0 1rem 0;
}

.content-text {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Lists */
.content-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-left: 3px solid #6366f1;
    border-radius: 0 8px 8px 0;
    color: #e4e4e7;
    transition: all 0.3s ease;
}

.content-list li::before {
    content: '→';
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: #6366f1;
    font-weight: bold;

    @media(max-width: 768px) {
        content: '';
    }
}

.content-list li:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.numbered-list {
    counter-reset: item;
    padding-left: 0;
    list-style: none;
}

.numbered-list li {
    counter-increment: item;
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #e4e4e7;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Tables */
.table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    background: #1e293b;
    min-width: 600px;
}

.content-table th,
.content-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #334155;
}

.content-table th {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 1;
}

.content-table td {
    color: #e4e4e7;
    font-size: 0.95rem;
}

.content-table tr:hover {
    background: rgba(99, 102, 241, 0.1);
}

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

/* Strong text styling */
.content-text strong,
.content-list li strong {
    color: #a78bfa;
    font-weight: 600;
}

/* Emphasis styling */
.content-text em {
    color: #fbbf24;
    font-style: normal;
    font-weight: 500;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #d1d5db;
    line-height: 1.6;
}

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

    .casino-main-content,
    .casino-secondary-content {
        padding: 20px 0;
    }

    .content-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }

    .subsection-heading {
        font-size: 1.25rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .content-list li {
        padding: 0.5rem 0 0.5rem 1.5rem;
    }

    .numbered-list li {
        padding: 0.75rem 0.75rem 0.75rem 3rem;
    }

    .numbered-list li::before {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .content-table th,
    .content-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .table-wrapper {
        margin: 1.5rem -15px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .content-title {
        font-size: 1.75rem;
    }

    .section-heading {
        font-size: 1.25rem;
        padding-left: 15px;
    }

    .section-heading::before {
        height: 20px;
        width: 3px;
    }

    .content-table th,
    .content-table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}