/* Casino Cards Styles */
.casinos-section {
    background: white;
    overflow: hidden;
}

.section-header {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
}

.cards-container {
    padding: 15px;
}

.casino-card {
    display: flex;
    align-items: center;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.casino-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.casino-card:hover .delete-btn {
    opacity: 1;
}

.casino-logo {
    width: 120px;
    height: 80px;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.casino-logo-placeholder {
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.2;
}

.card-content {
    flex: 1;
    margin-right: 25px;
    min-width: 0;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-bonus {
    background: #e8f5e8;
    color: #2d5016;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
}

.card-description {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f0f0;
    color: #555;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.action-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    min-width: 120px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: #218838;
    transform: translateY(-1px);
}