@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: #1a1a1a; /* Темний фон */
    color: #68614c; /* Контрастний, читабельний текст */
    line-height: 1.6;
}

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

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

/* Основні блоки */
.header-gradient {
    background: linear-gradient(5deg, #8b1d1d 0%, #ffcc70 55%, #fa6f25 100%);
    color: #ffffff;
}

.footer-bg {
    background: linear-gradient(180deg, #8b1d1d 0%, #1a1a1a 100%);
    color: #fdf7e3;
}

.casino-card {
    background: linear-gradient(45deg, #8b1d1d 0%, #ffcc70 55%, #fa6f25 100%);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e29c26;
    border-radius: 8px;
    padding: 20px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.25);
}

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

/* Текст з неоном */
.neon-text {
    color: #ffd700;
    text-shadow: 0 0 5px #ffa500, 0 0 10px #ff6600, 0 0 15px #ff3300;
}

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

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

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

table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background-color: #2a2a2a;
    color: #68614c;
}

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

table th {
    background-color: #8b1d1d;
    color: #ffffff;
    text-align: centr;
}

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

/* Інші утиліти */
.full-width {
    width: 100%;
}
