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 {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: white;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    padding: 15px 20px;
    border-bottom: 2px solid #8b4513;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 28px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: translateY(-2px);
}

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

.missions-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.missions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

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

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.btn-login:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.btn-signup {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a0f0a;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    border-top: 2px solid #8b4513;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.mobile-nav-items li {
    margin-bottom: 10px;
}

.mobile-nav-items .nav-link {
    display: block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.mobile-auth-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
}

.mobile-missions-btn {
    width: 100%;
    justify-content: center;
}

/* Banner Styles */
.banner {
    position: relative;
    min-height: 500px;
    background: url("../media/4642390344288262989.webp") no-repeat 0 0;
    background-size: contain;
    background-position: center center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

    @media(max-width: 768px) {
        background: url("../media/banner-small.png") no-repeat 0 0;
        background-size: cover;
        background-position: center center;
    }
}

.banner-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 20px;
    /*backdrop-filter: blur(10px);*/
    /*border: 2px solid rgba(255, 215, 0, 0.2);*/
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    top: 40px;
}

.banner-title {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-amount {
    font-size: 80px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)); }
}

.banner-bonus {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a0f0a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.cta-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.percentage-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a0f0a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .banner-content {
        padding: 40px 15px;
        margin: 0 10px;
    }

    .banner-amount {
        font-size: 60px;
    }

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

    .banner-bonus {
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

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

    .logo {
        font-size: 20px;
    }

    .banner {
        min-height: 400px;
        padding: 20px 10px;
    }

    .banner-amount {
        font-size: 48px;
    }

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

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

.container {
    max-width: 1200px;
    margin: 20px auto;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
}

.header {
    background: #2a2a2a;
    padding: 20px;
    border-bottom: 1px solid #3a3a3a;
}

.nav-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.nav-tab {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.nav-tab:hover {
    color: #cccccc;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-live {
    background: #d63384;
    color: white;
}

.btn-wins {
    background: #6c757d;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.table-container {
    overflow-x: auto;
}

.betting-table {
    width: 100%;
    border-collapse: collapse;
}

.betting-table th {
    background: #2a2a2a;
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: #888888;
    border-bottom: 1px solid #3a3a3a;
}

.betting-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #333333;
    vertical-align: middle;
    background: #2a2a2a;
}

.betting-table tr:hover {
    background: #333333;
}

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

.game-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.game-name {
    font-weight: 600;
    font-size: 14px;
}

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

.time {
    color: #aaaaaa;
    font-size: 13px;
}

.bet-amount {
    font-weight: 600;
    color: #ffffff;
}

.multiplier {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}

.payout {
    font-weight: 700;
    color: #28a745;
    font-size: 15px;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    body {
        padding: 10px 5px;
    }

    .header {
        padding: 15px;
    }

    .nav-tabs {
        gap: 20px;
        margin-bottom: 15px;
    }

    .nav-tab {
        font-size: 16px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .betting-table th,
    .betting-table td {
        padding: 12px 8px;
    }

    .game-info {
        gap: 8px;
    }

    .game-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .game-name {
        font-size: 13px;
        line-height: 1.3;
    }

    .player-name {
        font-size: 12px;
    }

    .time {
        font-size: 12px;
    }

    .bet-amount {
        font-size: 13px;
    }

    .multiplier {
        padding: 4px 8px;
        font-size: 11px;
    }

    .payout {
        font-size: 14px;
    }
}

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

    .betting-table th,
    .betting-table td {
        padding: 10px 6px;
    }

    .betting-table th {
        font-size: 12px;
    }

    .game-name {
        font-size: 12px;
    }

    .table-container {
        font-size: 12px;
    }
}

/* Спеціальні кольори для ігор */
.sweet-bonanza { background: linear-gradient(45deg, #ff6b9d, #c44569); }
.energy-joker { background: linear-gradient(45deg, #f39c12, #e67e22); }
.piggy-bank { background: linear-gradient(45deg, #e91e63, #ad1457); }
.diamonds { background: linear-gradient(45deg, #9c27b0, #673ab7); }
.bass-splash { background: linear-gradient(45deg, #00bcd4, #0097a7); }
.clovers { background: linear-gradient(45deg, #4caf50, #388e3c); }
.volcanoes { background: linear-gradient(45deg, #ff5722, #d84315); }
.starburst { background: linear-gradient(45deg, #ffc107, #ff9800); }

.providers-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.providers-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

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

.view-all-btn {
    background: #3a3a3a;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: #4a4a4a;
    transform: translateY(-1px);
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.nav-arrow:hover {
    background: #4a4a4a;
    transform: translateY(-1px);
}

.providers-container {
    margin: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.providers-container::-webkit-scrollbar {
    display: none;
}

.providers-grid {
    display: flex;
    gap: 20px;
    min-width: max-content;
    padding-bottom: 10px;
}

.provider-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #3a3a3a;
    flex-shrink: 0;
}

.provider-card:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #4a4a4a;
}

.provider-logo {
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.provider-card:hover .provider-logo {
    filter: brightness(1);
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

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

    .header-controls {
        gap: 10px;
    }

    .view-all-btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 20px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .providers-grid {
        gap: 15px;
    }

    .provider-card {
        min-width: 160px;
        height: 80px;
        padding: 20px;
    }

    .provider-logo {
        max-width: 120px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .providers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-controls {
        align-self: flex-end;
    }

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

    .provider-card {
        min-width: 140px;
        height: 70px;
        padding: 15px;
    }

    .provider-logo {
        max-width: 100px;
        max-height: 35px;
    }
}

/* Smooth scroll для мобільних */
@media (max-width: 768px) {
    .providers-container {
        scroll-behavior: smooth;
    }
}

.top-games-section {
    max-width: 1200px;
    margin: 0 auto
}

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

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

.view-all-btn {
    background: #3a3a3a;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: #4a4a4a;
    transform: translateY(-1px);
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.nav-arrow:hover {
    background: #4a4a4a;
    transform: translateY(-1px);
}

.games-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-container::-webkit-scrollbar {
    display: none;
}

.games-grid {
    display: grid;
    grid-template-rows: repeat(2, 200px);
    grid-auto-flow: column;
    grid-auto-columns: 180px;
    gap: 15px;
    padding-bottom: 10px;
    width: max-content;
}

.game-card {
    width: 180px;
    height: 200px;
    flex-shrink: 0;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
}

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

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

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    color: white;
}

.game-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-provider {
    font-size: 11px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Мобільна адаптація */
@media (max-width: 1200px) {
    .games-grid {
        grid-auto-columns: 160px;
    }

    .game-card {
        width: 160px;
    }
}

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

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

    .header-controls {
        gap: 10px;
    }

    .view-all-btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 20px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .games-grid {
        grid-template-rows: repeat(2, 160px);
        grid-auto-columns: 140px;
        gap: 12px;
    }

    .game-card {
        width: 140px;
        height: 160px;
    }

    .game-overlay {
        padding: 15px 12px 12px;
    }

    .game-title {
        font-size: 12px;
    }

    .game-provider {
        font-size: 10px;
    }

    .favorite-btn {
        width: 28px;
        height: 28px;
        top: 10px;
        right: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-controls {
        align-self: flex-end;
    }

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

    .games-grid {
        grid-template-rows: repeat(2, 140px);
        grid-auto-columns: 120px;
        gap: 10px;
    }

    .game-card {
        width: 120px;
        height: 140px;
    }

    .game-overlay {
        padding: 12px 10px 10px;
    }

    .game-title {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .game-provider {
        font-size: 9px;
    }

    .favorite-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* Smooth scroll */
@media (max-width: 768px) {
    .games-container {
        scroll-behavior: smooth;
    }
}

.footer {
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
    padding: 60px 20px 40px;
}

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

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

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

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 15px;
    max-width: 300px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #3a3a3a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #888888;
    font-size: 14px;
}

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

.footer-bottom-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Мобільна адаптація */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        grid-column: 2 / 4;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .footer {
        padding: 40px 15px 30px;
    }

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

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        grid-column: auto;
        display: flex;
        flex-direction: column;
    }

    .footer-brand {
        gap: 15px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-description {
        font-size: 14px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-link {
        font-size: 14px;
    }

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

    .footer-bottom-links {
        gap: 20px;
    }
}

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

    .footer-top {
        gap: 30px;
    }

    .footer-logo {
        font-size: 22px;
    }

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

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .footer-links {
        gap: 8px;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

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

    .footer-bottom-link {
        font-size: 13px;
    }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 50px;
    margin: 40px 0;
    border: 1px solid #3a3a3a;
}

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a4a4a;
}

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-wrapper strong {
    color: #ffffff;
    font-weight: 600;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-wrapper li {
    padding: 8px 0;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    list-style-type: disc;
    list-style-color: #007bff;
}

.content-wrapper li[aria-level="1"] {
    margin-left: 0;
}

.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    background: #333333;
    scrollbar-width: thin;
    scrollbar-color: #4a4a4a #2a2a2a;
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a;
}

table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: #333333;
}

tbody {
    background: #333333;
}

tr {
    border-bottom: 1px solid #4a4a4a;
}

tr:hover {
    background: #3a3a3a;
}

td {
    padding: 15px 20px;
    text-align: left;
    color: #e0e0e0;
    font-size: 15px;
    border-right: 1px solid #4a4a4a;
}

td:last-child {
    border-right: none;
}

td p {
    margin: 0;
    color: inherit;
}

td:first-child p {
    font-weight: 600;
    color: #ffffff;
}

/* Мобільна адаптація */
@media (max-width: 768px) {


    .content-section {
        padding: 30px 25px;
        margin: 25px 0;
    }

    h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }

    p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    li {
        font-size: 15px;
        padding: 6px 0;
    }

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

    td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 25px 20px;
        border-radius: 10px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    li {
        font-size: 14px;
        padding: 5px 0;
    }

    td {
        padding: 10px 12px;
        font-size: 13px;
    }
}