@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: #000000;
    line-height: 1.6;
}

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

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

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

.footer-bg {
    background: linear-gradient(180deg, #212121 0%, #0f0f0f 100%);
    color: #fbe9e7;
}

.casino-card {
    background: linear-gradient(45deg, #ffc107 0%, #ff8f00 40%, #43a047 100%);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #00bcd4;
    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: #ffd600;
    text-shadow: 0 0 5px #ff6f00, 0 0 10px #ff3d00, 0 0 15px #ffab00;
}

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

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

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

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

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