/* css/frontend.css */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f4f8; /* Lighter background */
    color: #334155;
    overflow-x: hidden;
}

.casino-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out 2s infinite;
}

.floating-more-delayed {
    animation: float 6s ease-in-out 4s infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.spin-slow {
    animation: spin 15s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.availability-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.available {
    background-color: #10b981;
    color: white;
}

.unavailable {
    background-color: #ef4444;
    color: white;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(249, 115, 22, 0.5); }
    to { box-shadow: 0 0 20px rgba(249, 115, 22, 0.8); }
}

.location-pulse {
    position: relative;
}

.location-pulse::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(249, 115, 22, 0.5);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.tab-active {
    background-color: #f97316;
    color: white;
}

.tab-inactive {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.filter-active {
    background-color: #f97316;
    color: white;
}

.filter-inactive {
    background-color: rgba(0, 0, 0, 0.05);
    color: #334155;
}

.flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.availability-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.status-available {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.status-unavailable {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.location-container {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-tag {
    background-color: #f1f5f9;
    color: #475569;
}