@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: #fdf6f9;
    color: #3a0a3e;
}

.header-gradient {
    background: linear-gradient(5deg, #3a0a3e 0%, #fdf6f9 55%, #e6b8c2 100%);
}

.casino-card {
    background: linear-gradient(45deg, #3a0a3e 0%, #fdf6f9 55%, #e6b8c2 100%);
    border: 1px solid #5e3d65;
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(58, 10, 62, 0.2);
}

.bonus-badge {
    background: #e6b8c2;
    color: #3a0a3e;
    border: 1px solid #5e3d65;
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: bold;
}

.neon-text {
    text-shadow: 0 0 4px #ffffff, 0 0 10px #e6b8c2, 0 0 14px #ffffff;
    color: #3a0a3e;
}

.footer-bg {
    background: linear-gradient(180deg, #3a0a3e 0%, #fdf6f9 100%);
}

.payment-icon {
    filter: brightness(0.85);
    transition: filter 0.2s ease;
    height: 24px;
}
.payment-icon:hover {
    filter: brightness(1.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;
}