@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: #0d1113; /* Темний фон із логотипу */
    color: #000000;
    line-height: 1.6;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #00c853; /* Яскраво-зелений як "Cassino" */
    margin-bottom: 0.5em;
}

h3 {
    margin-top: 20px !important;
    font-size: 1.475rem !important;
    color: #ffc107; /* Золотий як дракон і "PIX" */
}

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

.footer-bg {
    background: linear-gradient(180deg, #10191b 0%, #0a0d0f 100%);
    color: #e0f7fa;
}

.casino-card {
    background: linear-gradient(45deg, #ffc107 0%, #ff6f00 40%, #00c853 100%);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #00e5ff;
    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: #ff3d00; /* Як очі дракона */
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #ffc107;
    font-weight: 600;
}

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

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

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

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

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

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

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

table tr:nth-child(even) {
    background-color: #10191b;
}

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