@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: #002f36; /* Темно-синьо-зелений, як фон з лого */
    color: #000;
    line-height: 1.6;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #007f5f; /* Глибокий зелений */
    margin-bottom: 0.5em;
}

h3 {
    margin-top: 20px !important;
    font-size: 1.475rem !important;
    color: #ffc400; /* Жовтий з лого */
}

/* Основні блоки */
.header-gradient {
    background: linear-gradient(135deg, #006400 0%, #009b3a 45%, #fedf00 100%);
    color: #ffffff;
}

.footer-bg {
    background: linear-gradient(180deg, #00333d 0%, #001f22 100%);
    color: #e9fce1;
}

.casino-card {
    background: linear-gradient(45deg, #007f5f 0%, #009b3a 50%, #ffc400 100%);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #00d7ff;
    border-radius: 8px;
    padding: 20px;
}

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

/* Бейдж бонусу */
.bonus-badge {
    background: #004aad; /* глибокий синій */
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #fedf00;
    font-weight: 600;
}

/* Текст з неоном */
.neon-text {
    color: #ffef00;
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ff88, 0 0 15px #007f5f;
}

/* Іконки платежів */
.payment-icon {
    filter: brightness(0.9);
    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: #00333d;
    color: #ffcc00;
}

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

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

table tr:nth-child(even) {
    background-color: #002a30;
}

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