.event-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    z-index: 2;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.event-card:hover .card-image {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.status-closed {
    background: #440412;
    color: white;
    box-shadow: 0 4px 15px rgba(68, 4, 18, 0.3);
}

.card-content {
    padding: 25px;
}

.event-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.date-info {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #b68400;
}

.date-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.date-row:last-child {
    margin-bottom: 0;
}

.date-icon {
    width: 40px;
    height: 40px;
    background: #b68400;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 16px;
}

.date-content h6 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.date-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.85rem;
}

.info-label {
    background-color : #B0ABA1CC;
    color : #440412;
}

