.event-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    max-width: 480px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.event-category {
    background: #eff6ff;
    color: #3b82f6;
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status {
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
}

.event-status.available {
    background: #00c853;
    color: white;
}

.event-status.full {
    background: #ef4444;
    color: white;
}

.event-date {
    margin: 0 0 24px 0;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-size: 15px;
}

.detail-icon {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-text strong {
    color: #111827;
}

.event-button {
    display: block;
    width: 100%;
    background: #ff4500;
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.event-button:hover {
    background: #e63e00;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
    color: white;
}

@media (max-width: 480px) {
    .event-card {
        padding: 20px;
    }
}