@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: #0c1021; /* Глибокий темний фон */
    color: #000000;
    line-height: 1.6;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #1a237e; /* Темно-синій з логотипу */
    margin-bottom: 0.5em;
}

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

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

.footer-bg {
    background: linear-gradient(180deg, #1a1f3c 0%, #0c1021 100%);
    color: #f5f5f5;
}

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

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

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

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

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

table th,
table td {
    padding: 12px;
    border: 1px solid #3949ab;
}

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

table tr:nth-child(even) {
    background-color: #212a63;
}

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