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: inherit;
    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;
}

body {
    background: #1a1d29;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}
.bets-widget {
    background: #1a1d29;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.bets-widget__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.bets-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.bets-widget__tabs {
    display: flex;
    gap: 0;
}

.bets-widget__tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: #8b9dc3;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bets-widget__tab--active {
    color: #fff;
    border-bottom-color: #4f9eff;
}

.bets-widget__tab:hover:not(.bets-widget__tab--active) {
    color: #fff;
}

.bets-widget__buttons {
    display: flex;
    gap: 10px;
}

.bets-widget__btn {
    padding: 8px 16px;
    background: #2a2f3f;
    border: 1px solid #404654;
    border-radius: 6px;
    color: #8b9dc3;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bets-widget__btn:hover {
    background: #363c4f;
    color: #fff;
}

.bets-widget__table-container {
    background: #1e2330;
    border-radius: 8px;
    border: 1px solid #2a2f3f;
    overflow: hidden;
}

.bets-widget__table {
    width: 100%;
    border-collapse: collapse;
}

.bets-widget__table thead {
    background: #252b3d;
}

.bets-widget__table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #8b9dc3;
    font-size: 13px;
    border-bottom: 1px solid #2a2f3f;
    white-space: nowrap;
}

.bets-widget__table td {
    padding: 16px 12px;
    border-bottom: 1px solid #2a2f3f;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 0;
}

.bets-widget__table tbody tr {
    transition: background-color 0.2s ease;
}

.bets-widget__table tbody tr:hover {
    background: rgba(79, 158, 255, 0.05);
}

.bets-widget__table tbody tr:last-child td {
    border-bottom: none;
}

.bets-widget__game-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.bets-widget__game-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bets-widget__game-name {
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bets-widget__player-name {
    color: #8b9dc3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bets-widget__time {
    color: #8b9dc3;
    font-size: 13px;
}

.bets-widget__bet-amount {
    background: #2a2f3f;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
}

.bets-widget__multiplier {
    background: #4f9eff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.bets-widget__payout {
    font-weight: 600;
    color: #4ade80;
}

.bets-widget__payout--negative {
    color: #ef4444;
}

/* Responsive design */
@media (max-width: 768px) {
    .bets-widget__container {
        padding: 10px;
    }

    .bets-widget__header {
        flex-direction: column;
        align-items: stretch;
    }

    .bets-widget__tabs {
        justify-content: center;
    }

    .bets-widget__tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .bets-widget__buttons {
        justify-content: center;
    }

    .bets-widget__table th,
    .bets-widget__table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .bets-widget__game-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    /* Hide less important columns on mobile */
    .bets-widget__table th:nth-child(3),
    .bets-widget__table td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .bets-widget__table th:nth-child(4),
    .bets-widget__table td:nth-child(4),
    .bets-widget__table th:nth-child(5),
    .bets-widget__table td:nth-child(5) {
        display: none;
    }
}

/* Column widths */
.bets-widget__col-game { width: 25%; }
.bets-widget__col-player { width: 15%; }
.bets-widget__col-time { width: 12%; }
.bets-widget__col-bet { width: 12%; }
.bets-widget__col-multiplier { width: 12%; }
.bets-widget__col-payout { width: 24%; }

.footer {
    background: #1a1d29;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 60px 0 30px;
    border-top: 1px solid #2a2f3f;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: #8b9dc3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer__link:hover {
    color: #4f9eff;
}

.footer__description {
    color: #8b9dc3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2f3f;
    border-radius: 8px;
    color: #8b9dc3;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: #4f9eff;
    color: #fff;
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid #2a2f3f;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: #8b9dc3;
    font-size: 14px;
}

.footer__bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__bottom-link {
    color: #8b9dc3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__bottom-link:hover {
    color: #4f9eff;
}

.footer__newsletter {
    margin-top: 20px;
}

.footer__newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer__newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: #2a2f3f;
    border: 1px solid #404654;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer__newsletter-input:focus {
    border-color: #4f9eff;
}

.footer__newsletter-input::placeholder {
    color: #8b9dc3;
}

.footer__newsletter-btn {
    padding: 12px 24px;
    background: #4f9eff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.footer__newsletter-btn:hover {
    background: #3b82f6;
}

.footer__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.footer__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b9dc3;
    font-size: 14px;
}

.footer__info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f9eff;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__container {
        padding: 0 15px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer__title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer__bottom-links {
        gap: 20px;
        justify-content: center;
    }

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

    .footer__newsletter-btn {
        align-self: flex-start;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer__bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer__social {
        gap: 10px;
    }

    .footer__social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

.header {
    background: #1a1d29;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-bottom: 1px solid #2a2f3f;
    position: relative;
    z-index: 1000;
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header__logo {
    font-size: 24px;
    font-weight: 700;
    color: #4f9eff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.header__nav-link {
    color: #8b9dc3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.header__nav-link:hover {
    color: #fff;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4f9eff;
    transition: width 0.3s ease;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__auth {
    display: flex;
    gap: 12px;
}

.header__btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header__btn--login {
    background: transparent;
    color: #8b9dc3;
    border: 1px solid #404654;
}

.header__btn--login:hover {
    background: #2a2f3f;
    color: #fff;
    border-color: #4f9eff;
}

.header__btn--register {
    background: #4f9eff;
    color: #fff;
}

.header__btn--register:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.header__hamburger-line {
    width: 24px;
    height: 3px;
    background: #8b9dc3;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.header__hamburger.active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

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

.header__mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1d29;
    border-bottom: 1px solid #2a2f3f;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header__mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header__mobile-content {
    padding: 20px;
}

.header__mobile-nav {
    list-style: none;
    margin-bottom: 20px;
}

.header__mobile-nav li {
    margin-bottom: 15px;
}

.header__mobile-nav .header__nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #2a2f3f;
    font-size: 16px;
}

.header__mobile-nav .header__nav-link::after {
    display: none;
}

.header__mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header__mobile-auth .header__btn {
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
}

/* Responsive breakpoint at 1024px */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__auth {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0 15px;
        height: 60px;
    }

    .header__logo {
        font-size: 20px;
    }

    .header__mobile-content {
        padding: 15px;
    }

    .header__mobile-nav .header__nav-link {
        padding: 12px 0;
        font-size: 15px;
    }
}

.jackpots {
    background: #1a1d29;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 40px 0;
}

.jackpots__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.jackpots__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.jackpots__icon {
    font-size: 32px;
}

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

.jackpots__view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #2a2f3f;
    border: 1px solid #404654;
    border-radius: 8px;
    color: #8b9dc3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.jackpots__view-all:hover {
    background: #363c4f;
    color: #fff;
    border-color: #4f9eff;
}

.jackpots__counter {
    background: #4f9eff;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.jackpots__nav-btn {
    width: 40px;
    height: 40px;
    background: #2a2f3f;
    border: 1px solid #404654;
    border-radius: 8px;
    color: #8b9dc3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.jackpots__nav-btn:hover:not(.jackpots__nav-btn--disabled) {
    background: #363c4f;
    color: #fff;
    border-color: #4f9eff;
}

.jackpots__nav-btn--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.jackpots__games-wrapper {
    position: relative;
    overflow: hidden;
}

.jackpots__games {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.jackpots__game {
    flex: 0 0 auto;
    width: 280px;
    background: linear-gradient(135deg, #2a2f3f 0%, #1e2330 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #404654;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.jackpots__game:hover {
    transform: translateY(-4px);
    border-color: #4f9eff;
    box-shadow: 0 10px 30px rgba(79, 158, 255, 0.2);
}

.jackpots__game-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.jackpots__game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.jackpots__game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #4f9eff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.jackpots__game-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b9dc3;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.jackpots__game-favorite:hover {
    background: rgba(79, 158, 255, 0.8);
    color: #fff;
}

.jackpots__game-info {
    padding: 16px;
}

.jackpots__game-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.jackpots__game-provider {
    font-size: 13px;
    color: #8b9dc3;
}

/* Desktop navigation buttons */
.jackpots__nav-btn {
    display: flex;
}

/* Mobile and tablet styles */
@media (max-width: 1024px) {
    .jackpots__controls {
        gap: 10px;
    }

    .jackpots__nav-btn {
        display: none;
    }

    .jackpots__games-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .jackpots__games-wrapper::-webkit-scrollbar {
        display: none;
    }

    .jackpots__games {
        padding-bottom: 10px;
    }

    .jackpots__game {
        width: 250px;
        flex-shrink: 0;
    }

    .jackpots__game-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .jackpots {
        padding: 30px 0;
    }

    .jackpots__container {
        padding: 0 15px;
    }

    .jackpots__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .jackpots__title {
        font-size: 24px;
    }

    .jackpots__icon {
        font-size: 28px;
    }

    .jackpots__game {
        width: 220px;
    }

    .jackpots__game-image {
        height: 140px;
    }

    .jackpots__game-info {
        padding: 12px;
    }

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

    .jackpots__games {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .jackpots__title {
        font-size: 20px;
    }

    .jackpots__icon {
        font-size: 24px;
    }

    .jackpots__game {
        width: 200px;
    }

    .jackpots__game-image {
        height: 120px;
    }

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


.promo-banners {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Фонові градієнти для кожного банера */
.welcome-banner {
    background: url("../images/banner-1.webp") no-repeat center center;
    background-size: cover;
}

.cashback-banner {
    background: url("../images/banner-2.webp") no-repeat center center;
    background-size: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: white;
}

.promo-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 15px 0;
}

.promo-amount {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.promo-description {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.promo-code {
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-button {
    background: #4ade80;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.promo-button:hover {
    transform: translateY(-2px);
}

/* Додаткові декоративні елементи */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

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

/* Мобільна адаптація */
@media (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .promo-card {
        height: 160px;
    }

    .promo-overlay {
        padding: 20px;
    }

    .promo-amount {
        font-size: 1.6rem;
    }

    .promo-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-card {
        height: 140px;
    }

    .promo-overlay {
        padding: 18px;
    }

    .promo-header {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .promo-amount {
        font-size: 1.4rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }

    .promo-code {
        font-size: 0.8rem;
    }

    .promo-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .promo-banners {
        gap: 12px;
    }

    .promo-card {
        height: 130px;
    }

    .promo-overlay {
        padding: 15px;
    }

    .promo-amount {
        font-size: 1.2rem;
    }

    .promo-description {
        font-size: 0.85rem;
    }

    .promo-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

}

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: 1 / -1;
        height: 180px;
    }
}

/* Спеціальна адаптація для великих планшетів */
@media (min-width: 900px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: auto;
        height: 160px;
    }
}

/* Анімація появи карток */
.promo-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-card:nth-child(3) { animation-delay: 0.3s; }

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

.casino-content {
    background: #1a1d29;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    padding: 40px 0;
}

.casino-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.casino-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.casino-content h2:first-child {
    margin-top: 0;
}

.casino-content h2 strong {
    font-weight: 700;
}

/* Paragraphs */
.casino-content p {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.7;
}

.casino-content p strong {
    color: #fff;
    font-weight: 600;
}

/* Lists */
.casino-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.casino-content ul li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.casino-content ul li::before {
    content: '•';
    color: #4f9eff;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 18px;
    font-weight: bold;
}

.casino-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.casino-content ol li {
    padding: 6px 0;
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 8px;
}

.casino-content ol li::marker {
    color: #4f9eff;
    font-weight: 600;
}

/* Tables */
.casino-content table {
    width: 100%;
    border-collapse: collapse;
    background: #2a2f3f;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid #404654;
}

.casino-content table tbody tr:first-child td {
    background: #363c4f;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid #4f9eff;
}

.casino-content table td {
    padding: 16px;
    border-bottom: 1px solid #404654;
    font-size: 15px;
    color: #d1d5db;
    vertical-align: top;
}

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

.casino-content table td p {
    margin: 0;
    font-size: 15px;
}

.casino-content table td p strong {
    color: #fff;
}

/* Table wrapper for mobile scroll */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid #404654;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #2a2f3f;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #4f9eff;
    border-radius: 3px;
}

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

/* Highlight sections */
.casino-content p:has(strong:first-child) {
    background: rgba(79, 158, 255, 0.1);
    border-left: 4px solid #4f9eff;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}

/* Special styling for key sections */
.casino-content h2:contains("Welcome to KryptoleoCasino"),
.casino-content h2:contains("What Makes KryptoleoCasino Stand Out"),
.casino-content h2:contains("Why Choose KryptoleoCasino") {
    color: #4f9eff;
    border-bottom: 2px solid #4f9eff;
    padding-bottom: 10px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .casino-content {
        padding: 30px 0;
    }

    .casino-content__container {
        padding: 0 15px;
    }

    .casino-content h2 {
        font-size: 24px;
        margin: 30px 0 16px 0;
    }

    .casino-content p {
        font-size: 15px;
    }

    .casino-content ul li,
    .casino-content ol li {
        font-size: 15px;
    }

    .casino-content table td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .casino-content {
        padding: 20px 0;
    }

    .casino-content h2 {
        font-size: 22px;
        margin: 24px 0 14px 0;
        line-height: 1.4;
    }

    .casino-content p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .casino-content ul li,
    .casino-content ol li {
        font-size: 14px;
        padding: 6px 0 6px 20px;
    }

    .casino-content ul li::before {
        left: 0;
        top: 6px;
        font-size: 16px;
    }

    .casino-content table td {
        padding: 10px;
        font-size: 13px;
    }

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

    .casino-content p:has(strong:first-child) {
        padding: 12px 16px;
        margin: 16px 0;
    }
}

@media (max-width: 480px) {
    .casino-content__container {
        padding: 0 12px;
    }

    .casino-content h2 {
        font-size: 20px;
        margin: 20px 0 12px 0;
    }

    .casino-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .casino-content ul li,
    .casino-content ol li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }

    .casino-content table td {
        padding: 8px;
        font-size: 12px;
    }

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

    .casino-content p:has(strong:first-child) {
        padding: 10px 12px;
        margin: 12px 0;
    }
}