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

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #008037;
    margin-bottom: 0.5em;
}

h3 {
    margin-top: 20px !important;
    font-size: 1.475rem !important;
    color: #ffc700;
}

/* Основні блоки */
.header-gradient {
    background: linear-gradient(135deg, #ff7300 0%, #ffac00 50%, #ffdd00 100%);
    color: #000000; /* <-- Текст у хедері тепер чорний */
}

.footer-bg {
    background: linear-gradient(180deg, #013842 0%, #011a1e 100%);
    color: #f0ffe0;
}

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

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

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

/* Текст з неоном */
.neon-text {
    color: #ffee00;
    text-shadow: 0 0 5px #ffaa00, 0 0 10px #ff5500, 0 0 15px #ffcc00;
}

/* Іконки платежів */
.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: #012c33;
    color: #ffca28;
}

table th,
table td {
    padding: 12px;
    border: 1px solid #02535d;
}

table th {
    background-color: #007f5f;
    color: #ffffff;
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #02353d;
}

/* Утиліти */
.full-width {
    width: 100%;
}
