@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: #e8f3fa;
    color: #14243d;
}


.header-gradient {
    background: linear-gradient(5deg, #0f172a 0%, #203a59 20%, #3b6d8d 45%, #66a3c7 75%, #a3d4f7 100%);
}

.casino-card {
    background: linear-gradient(45deg, #0f172a 0%, #203a59 20%, #3b6d8d 45%, #66a3c7 75%, #a3d4f7 100%);
    border: 1px solid #1f4068;
    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 24px rgba(20, 30, 55, 0.3);
}


.bonus-badge {
    background: #a3d4f7;
    color: #1a1a2e;
    border: 1px solid #a3d4f7;
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: bold;
}

.neon-text {
    text-shadow: 0 0 4px #ffffff, 0 0 10px #87c3f4, 0 0 14px #ffffff;
    color: #1a1a2e;
}

.footer-bg {
    background: linear-gradient(180deg, #0f172a 0%, #203a59 20%, #3b6d8d 45%, #66a3c7 75%, #a3d4f7 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;
}