@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: #0d1f2d; /* Темно-синій, як нічне рибальство */
    color: #000000;
    line-height: 1.6;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #01579b; /* Глибокий синій */
    margin-bottom: 0.5em;
}

h3 {
    margin-top: 20px !important;
    font-size: 1.475rem !important;
    color: #ffc107; /* Золото з риби */
}

/* Основні блоки */
.header-gradient {
    background: linear-gradient(135deg, #00bcd4 0%, #ff6f00 50%, #ffc107 100%);
    color: #0d1f2d;
}

.footer-bg {
    background: linear-gradient(180deg, #1a2f3a 0%, #0d1f2d 100%);
    color: #ffffff;
}

.casino-card {
    background: linear-gradient(45deg, #01579b 0%, #00bcd4 40%, #ffc107 100%);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffecb3;
    border-radius: 8px;
    padding: 20px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.4);
}

/* Бейдж бонусу */
.bonus-badge {
    background: #ff6f00;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #ffc107;
    font-weight: 600;
}

/* Текст з неоном */
.neon-text {
    color: #ffe082;
    text-shadow: 0 0 5px #ffb300, 0 0 10px #ff6f00, 0 0 15px #ffc107;
}

/* Іконки платежів */
.payment-icon {
    filter: brightness(0.95);
    transition: filter 0.2s ease;
    height: 24px;
}

.payment-icon:hover {
    filter: brightness(1.2);
}

/* Таблиці */
.table-container {
    width: 100%;
    overflow-x: auto;
    color: #ffffff;
}

table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background-color: #16303d;
    color: #ffc107;
}

table th,
table td {
    padding: 12px;
    border: 1px solid #2a4a59;
}

table th {
    background-color: #01579b;
    color: #ffffff;
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #1c394b;
}

/* Утиліти */
.full-widt
