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

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #4b0082;
    margin-bottom: 0.5em;
}

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

/* Основні блоки */
.header-gradient {
    background: linear-gradient(135deg, #4b0082 0%, #673ab7 45%, #ffc100 100%);
    color: #fff;
}

.footer-bg {
    background: linear-gradient(180deg, #4b0082 0%, #140101 100%);
    color: #fff5cc;
}

.casino-card {
    background: linear-gradient(45deg, #4b0082 0%, #673ab7 50%, #ffcc00 100%);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ff9900;
    border-radius: 8px;
    padding: 20px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 51, 153, 0.4);
}

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

/* Неон */
.neon-text {
    color: #ffcc00;
    text-shadow: 0 0 5px #ffd700, 0 0 10px #aa00ff, 0 0 15px #673ab7;
}

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

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

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

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

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