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: #0f1318;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.top-games {
    margin-bottom: 60px;
}

.top-games__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.top-games__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.top-games__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-games__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-games__view-all:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.top-games__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.top-games__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-games__nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.top-games__nav-btn svg {
    width: 20px;
    height: 20px;
}

.top-games__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
}

.game-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1318 100%);
    overflow: hidden;
    border-radius: 16px;
}

.game-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.05);
}

.game-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.game-card__favorite:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.game-card__favorite svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.game-card__favorite.active svg {
    fill: #ef4444;
    stroke: #ef4444;
}

.game-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 10px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-card:hover .game-card__play {
    opacity: 1;
}

.game-card__play svg {
    width: 16px;
    height: 16px;
}

.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__info {
    padding: 12px 0;
}

.game-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Адаптивність */
@media (max-width: 1200px) {
    .top-games__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .top-games__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .top-games__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .top-games__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .top-games__title {
        font-size: 24px;
    }

    .top-games__controls {
        gap: 8px;
    }

    .top-games__nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .top-games__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .top-games__title {
        font-size: 20px;
    }

    .game-card__title {
        font-size: 13px;
    }

    .game-card__provider {
        font-size: 11px;
    }

    .top-games__view-all {
        padding: 10px 16px;
        font-size: 13px;
    }

    .top-games__nav-btn {
        width: 36px;
        height: 36px;
    }
}

/* Instant Win Section */
.instant-win {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

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

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.instant-win-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
}

.game-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1318 100%);
    overflow: hidden;
    border-radius: 16px;
}

.game-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.game-card__favorite:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.game-card__favorite svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.game-card__info {
    padding: 12px 0;
}

.game-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Live Bets Section */
.live-bets {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
}

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

.tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab.active {
    color: #fff;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6366f1;
}

.bets-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

.table-wrapper {
    overflow-x: auto;
    margin: 0 -32px;
}

.bets-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.bets-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bets-table th {
    padding: 16px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bets-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.bets-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.bets-table td {
    padding: 16px 12px;
    font-size: 14px;
}

.game-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-emoji {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.game-name {
    color: #fff;
    font-weight: 500;
}

.player-name {
    color: #fff;
    font-weight: 500;
}

.time-cell {
    color: rgba(255, 255, 255, 0.5);
}

.bet-amount {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.multiplier {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
}

.payout {
    color: #22c55e;
    font-weight: 600;
}

/* Адаптивність */
@media (max-width: 1200px) {
    .instant-win-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .instant-win-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

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

    .live-bets {
        padding: 24px;
    }

    .table-wrapper {
        margin: 0 -24px;
    }
}

@media (max-width: 768px) {
    .instant-win-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

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

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .live-bets {
        padding: 20px;
        border-radius: 16px;
    }

    .table-wrapper {
        margin: 0 -20px;
    }

    .bets-table {
        min-width: 800px;
    }

    .game-emoji {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .instant-win-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .view-all-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }

    .tabs {
        width: 100%;
        overflow-x: auto;
    }

    .tab {
        font-size: 14px;
        padding: 8px 16px;
        white-space: nowrap;
    }

    .action-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

.footer {
    background: linear-gradient(180deg, rgba(15, 19, 24, 0) 0%, rgba(10, 13, 17, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Providers Section */
.providers-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.providers-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.provider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.responsible-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.responsible-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.responsible-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.responsible-icon {
    font-size: 18px;
}

/* Disclaimer */
.disclaimer {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Social Links */
.social-section {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #6366f1;
    transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

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

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #fff;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
}

.age-icon {
    font-size: 20px;
}

/* Licenses */
.licenses {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    color: #22c55e;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.license-badge:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .provider-item {
        height: 50px;
        font-size: 12px;
    }
}

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

    .footer-main {
        padding: 40px 0 20px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsible-links {
        flex-direction: column;
        align-items: stretch;
    }

    .responsible-link {
        justify-content: center;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}


.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 19, 24, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-register {
    padding: 10px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    background: rgba(15, 19, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999999;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    z-index: 9999; /* Меню має бути вище overlay */
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

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

.mobile-auth-buttons .btn-login,
.mobile-auth-buttons .btn-register {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    text-align: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }

    .logo {
        font-size: 24px;
    }

    .mobile-menu {
        top: 70px;
        padding: 32px 20px;
    }
}

@media (max-width: 576px) {
    .header-content {
        height: 60px;
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu {
        top: 60px;
        padding: 24px 16px;
    }

    .hamburger {
        width: 24px;
        height: 24px;
        gap: 4px;
    }

    .hamburger span {
        height: 2.5px;
    }
}

.promo-banners {
    margin-bottom: 60px;
}

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

.promo-card {
    position: relative;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #2d1b47 0%, #1a0f2e 100%);
    display: flex;
    flex-direction: column;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff
}

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

.promo-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.promo-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card__title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-card__subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.promo-card__code {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: auto;
}

.promo-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    margin-top: 24px;
    align-self: flex-start;
}

.promo-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.5);
}

/* Card Variants */
.promo-card--welcome {
    background: linear-gradient(135deg, #4a1e78 0%, #2d1047 100%);
}

.promo-card--highroller {
    background: linear-gradient(135deg, #78144a 0%, #470d2d 100%);
}

.promo-card--cashback {
    background: linear-gradient(135deg, #781e4a 0%, #47102d 100%);
}

/* H1 Special Styling */
.promo-card h1 {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    background: #f0f0f0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 1200px) {
    .promo-card__title,
    .promo-card h1 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promo-card {
        height: 260px;
        padding: 28px;
    }

    .promo-card__title,
    .promo-card h1 {
        font-size: 32px;
    }

    .promo-card__subtitle {
        font-size: 14px;
    }

    .promo-card__button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .promo-card {
        height: 240px;
        padding: 24px;
    }

    .promo-card__title,
    .promo-card h1 {
        font-size: 28px;
    }

    .promo-card__badge {
        font-size: 11px;
        padding: 6px 14px;
    }
}

@media (max-width: 576px) {
    .promo-card {
        height: 220px;
        padding: 20px;
    }

    .promo-card__title,
    .promo-card h1 {
        font-size: 24px;
    }

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

    .promo-card__code {
        font-size: 12px;
    }

    .promo-card__button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 48px;
    line-height: 1.3;
}

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

.content-section h2 strong {
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.content-section p strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.content-section ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.content-section ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
}

.content-section ul li strong {
    font-weight: 700;
    color: #fff;
}

/* Table Styles */
.content-section .table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.content-section table tbody tr:first-child {
    background: rgba(99, 102, 241, 0.1);
}

.content-section table tbody tr:first-child td {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.content-section table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

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

.content-section table tbody tr:not(:first-child):hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.content-section table strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 992px) {
    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .content-section h2 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 20px;
    }

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

    .content-section ul li {
        padding-left: 24px;
    }

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

    .content-section table tbody tr:first-child td {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 32px 0;
    }

    .content-section h2 {
        font-size: 22px;
        margin-top: 28px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 14px;
        line-height: 1.7;
    }

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

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