@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: #FDF6EC; /* Темный фоновый цвет */
    color: #1B1F3B; /* Светлый песочный текст */
}

.header-gradient {
    background: linear-gradient(5deg, #FDF6EC 0%, #FDF6EC 65%, #FFB199 100%);
}

.casino-card {
    background: linear-gradient(45deg, #FFB199 0%, #FFB199 50%, #A29BFE 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD700;
    color: #1B1F3B;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(255, 209, 102, 0.2);
}

.bonus-badge {
    background: #FFB199;
    color: #FFB199;
    border: 1px solid #FDF6EC;
}

.neon-text {
    text-shadow: 0 0 5px #ffffff, 0 0 10px #FFB199, 0 0 15px #ffffff;
}

.footer-bg {
    background: linear-gradient(180deg, #FDF6EC 0%, #FFB199 100%);
}

.payment-icon {
    filter: brightness(0.85);
    transition: filter 0.2s ease;
    height: 24px;
}

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

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

.full-width {
    width: 100%;
}
