@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121816; /* более глубокий зелено-чёрный фон */
    color: #000;
}

.header-gradient {
    background: linear-gradient(5deg, #3A9D75 0%, #121816 55%, #FFC94A 100%);
}

.casino-card {
    background: linear-gradient(45deg, #3A9D75 0%, #121816 55%, #FFC94A 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A9D75;
    border-radius: 12px;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 18px rgba(255, 201, 74, 0.25);
}

.bonus-badge {
    background: #FFC94A;
    color: #121816;
    border: 1px solid #3A9D75;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.neon-text {
    text-shadow: 0 0 4px #FFC94A, 0 0 8px #3A9D75, 0 0 12px #FFC94A;
}

.footer-bg {
    background: linear-gradient(180deg, #3A9D75 0%, #121816 100%);
}
.payment-icon {
    filter: brightness(0.8);
    transition: filter 0.2s ease;
    height: 24px;
}
.payment-icon:hover {
    filter: brightness(1);
}
h3 {
    margin-top: 20px !important;
    font-size: 1.475rem !important;
}
.full-width {
    width: 100%;
}
.table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 480px; /* або більше, залежно від кількості колонок */
  border-collapse: collapse;
}