.publish-form {
    background: var(--dark-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.section-title i {
    color: var(--primary);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--light);
}
.required::after {
    content: '*';
    color: var(--danger);
    margin-left: 0.25rem;
}
.form-hint {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}