@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: #f5f5f5;
    color: #333;
}
.header-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 100%);
}
.casino-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}
.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.bonus-badge {
    background: linear-gradient(90deg, #ef4444 0%, #b91c1c 100%);
}
.neon-text {
    text-shadow: 0 0 5px #ffffff, 0 0 10px #fca5a5, 0 0 15px #ffffff;
}
.footer-bg {
    background: linear-gradient(180deg, #ffffff 0%, #e5e7eb 100%);
}
.payment-icon {
    filter: brightness(0.8);
    transition: filter 0.2s ease;
    height: 24px;
}
.payment-icon:hover {
    filter: brightness(1);
}
h3 {
    margin-top: 20px !important;
    font-size: 1.475rem !important;
}
.full-width {
    width: 100%;
}