body {
    background-color: #111827;
    color: #f3f4f6;
    font-family: 'Arial', sans-serif;
}
.casino-card {
    background: #1f2937;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.casino-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.casino-card-content h3 {
    text-align: center;
}
.casino-card-button {
    margin-top: auto;
    width: fit-content;
    align-self: center;
}
.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(251, 191, 36, 0.1);
}
.table {
    background: #1f2937;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
.table th {
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}
.table td {
    border-bottom: 1px solid #374151;
}
.table tr:last-child td {
    border-bottom: none;
}
.bonus-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}
.chip-icon {
    width: 40px;
    height: 40px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
}
.btn-primary {
    background-color: #f59e0b;
    color: #1f2937;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

